jQuery.noConflict();
jQuery(document).ready(function(){
//If the User resizes the window, adjust the #container height
jQuery(window).load("resize", resizeWindow);
jQuery(window).bind("resize", resizeWindow);
function resizeWindow( e ) {
	var newWindowHeight = jQuery(window).height();
	jQuery(".container").css("min-height", newWindowHeight );
	var newWindowWidth = jQuery(window).width();
	if(newWindowWidth < 1056){
		jQuery(".container").css("padding-left", 25 );
	}else{
		jQuery(".container").css("padding-left", 104 );
	}	
}

});			

