$(document).ready(function(){

$("div#logo").click(function(){
window.location="index.php";
});

if($(window).height()>$('div#page').height()){
$('div#content').height($(window).height()-280);
}

});