$(".footclose").hover(function(){
							  $(".footer").animate({bottom: '-190'}, "slow");
							  
							  
							  
							  } );



$(".trans").fadeTo("fast",0.8);
$(".trans").hover(function(){$(this).fadeTo("fast", 1.0)}, function(){$(this).fadeTo("fast", 0.8)} );


$(".transFoot").fadeTo("fast",0.2);
$(".transFoot").hover(function(){$(this).fadeTo("fast", 1.0)}, function(){$(this).fadeTo("fast", 0.2)} );

// top menu


$(".topmenu .link1").hover(function(){$("#link1").fadeIn("fast");}, function(){$("#link1").fadeOut("fast");});
$(".topmenu .link2").hover(function(){$("#link2").fadeIn("fast");}, function(){$("#link2").fadeOut("fast");});

$(".footer").css({ bottom: "-190px"}); //set footer to the bottom initially





$(".footopen").hover(function(){
							  $(".footer").animate({bottom: '0'}, "slow");
							  
							  
							  
							  } );









