$(document).ready(function()
{
$('#content').hide().fadeIn(2000);
//$('#content img').hide().fadeIn('slow');
$('#mainmenu ul li').hover(function() {
	$(this).css({'z-index' : '10'});
	var curzindex = 60;
	curzindex++;	
	$(this).css({'z-index' : curzindex }).siblings().stop().fadeTo(200, '0.33');
	$(this).find('img').stop()
		.animate({
			 height: "190",
	         width: "220",
			 right: "-=50",
             top: "-=50"
		}, 200);
	$(this).find('span').css({'z-index' : '30'}).stop()
		.animate({
			/*marginTop: '-60px', 
			marginLeft: '-60px', */
			fontSize: "150%",
			color:'#d7df23'
		}, 200);
	} , function() {
	
	$(this).siblings().stop().fadeTo(200, 1);
	$(this).find('img').stop()
		.removeAttr("style").animate({
			}, 400);
	$(this).find('span').stop()
		.removeAttr("style").animate({
			}, 400);			
	$(this).removeAttr("style");
});
    $("#mainnav a").hover(function() {
        $(this).parent("li").addClass('hover');
    }, function(){
        $(this).parent("li").removeClass('hover');
    });

});
