    	function fixHeight() {
    	
    		$("#big_mcontainer").animate({ height: (Math.max($("#height_wrapper").height()+40,$(window).height()-181))+'px'}, 150);
    	}
    	
		$(window).load(function () {
			fixHeight();
			$(window).resize(function(){
				fixHeight();	
			});
			
			if($(".content").length > 0) {
	  		    $(".content").corner("bottom 5px");
  		    }
  		    
			if($(".acontent").length > 0) {
  			    $(".acontent").corner("5px");
  		    }

			if($("#photos").length > 0) {
				$('#photos').galleryView({
					panel_width: 661,
					panel_height: 370,
					transition_speed: 500,
					transition_interval: 0,
					nav_theme: 'dark',
					border: '1px solid #0a0a0a',
					pause_on_hover: true
				});
			}
			
			
			
			
	    });    
	    
	    

