jQuery.noConflict();

jQuery(document).ready(function(){
	// vertical alignment
	function floaterHeight(){
		var winHeight = jQuery(window).height();
		jQuery('#floater').css({"height": winHeight/2});
	}	
	
	jQuery(window).resize(function() {
		jQuery('#floater').removeAttr("style");
		floaterHeight();
	});
	
	floaterHeight();
	
	/**/
	
	//custom scroll
	if(jQuery('#content')[0]){
		jQuery('#content').jScrollPane({showArrows:true, scrollbarWidth: 16, hijackInternalLinks: true});
	}
	
	/**/
	
});
