	$(document).ready(function(){
		$('a.trans').hover(
			function(){
				var w=$(this).attr('id');
				$('#'+w+'s').fadeIn();
			},
			function(){
				var w=$(this).attr('id');
				$('#'+w+'s').fadeOut();
			});
		$('a.contact').hover(
			 function () {
				$(this).stop().animate({"color": "#999"}, "slow");
			  }, 
			  function () {
				$(this).stop().animate({"color": "#CECECE"}, "slow");
	  		   });
		var height = ($(document).height()-275)/2;
		$('.content').css('margin-top',height);
		setTimeout("$('.logo').fadeIn('slow');",750);
		setTimeout("$('.links').fadeIn('slow');",2000);
		setTimeout("$('.contact').fadeIn('slow')",3000);
	});

