$(document).ready(function()
{
		$('.section:not(:first)').hide();
		$('#about').fadeIn("slow");;		
		
		$.ifixpng('../images/pixel.gif');
		$('img').ifixpng();
		
		$(".menu a").hover(function() 
		{
			$(this).next("em").animate({opacity: "show", top: "-75"}, "slow");
		}, function() 
		{
			$(this).next("em").animate({opacity: "hide", top: "-85"}, "fast");
		});   
		
		$(".menu a").click(function() 
		{
			$('.section').fadeOut("slow");	
			$($(this).attr("id")).fadeIn("slow");;					
		});   
     
});