$(document).ready(function() {    
 function imageresize() {  
 var contentheight =  $(window).height();
 if ((contentheight) > '750'){ 
  $("#header").animate({ marginTop: 30}, 0);
  $("#slideshow, #container1, #gallery").animate({ height: 495}, 0);
  
 } else {  
    $("#header").animate({ marginTop: 0}, 0);
    $("#slideshow, #container1, #gallery").animate({ height: 435}, 0);
 }  
 }  
 imageresize();       
 $(window).bind("resize", function(){
 imageresize();  
 });  
 });
