$(document).ready(function(){	
	

	$('#wrapper').css({'overflow':'hidden'});
	
	
	/************************
	MENU HOVER
	************************/
	
	$('#header #navigation li span').hide();
	
	$('#header #navigation li a').hover(
	function(){
		$(this).css({'color':'#000000'});
		$(this).parent().find('span').slideToggle('fast');
	},
	function(){
		$(this).css({'color':'#C0C0C0'});
		$(this).parent().find('span').slideToggle('fast');
	}
	);
	
	$('.scrollable-area span.yellow').hide();
	
	$('.scrollable-area').hover(
	function(){
		$(this).find('h1').css({'color':'#000000'});
		$(this).find('span.yellow').slideToggle('fast');
	},
	function(){
		$(this).find('h1').css({'color':'#FFFFFF'});
		$(this).find('span.yellow').slideToggle('fast');
	}
	);
	


	
			
			// Scrollable
			Shadowbox.init();
			
			$("#fooweb").carouFredSel({
				items: 3,
				scroll:{
					items : 1
				},
				direction: "left",
				auto: true,
				prev : "#fooweb_prev",
    			next : "#fooweb_next"
			}).find(".item a").hover(
				function() { $(this).find(".info").slideDown('fast'); },
				function() { $(this).find(".info").slideUp('fast'); }
			);
			
			$("#foodesign").carouFredSel({
				items: 3,
				scroll:{
					items : 1
				},
				direction: "right",
				auto: true,
				prev : "#foodesign_prev",
    			next : "#foodesign_next"
			}).find(".item a").hover(
				function() { $(this).find(".info").slideDown('fast'); },
				function() { $(this).find(".info").slideUp('fast'); }
			);
			
			$("#foodesign2").carouFredSel({
				items: 3,
				scroll:{
					items : 1
				},
				direction: "left",
				auto: true,
				prev : "#foodesign2_prev",
    			next : "#foodesign2_next"
			}).find(".item a").hover(
				function() { $(this).find(".info").slideDown('fast'); },
				function() { $(this).find(".info").slideUp('fast'); }
			);
			
			
			$(".item a").hover(
			function(){ $(this).find("img").animate({height: '200', 'margin-left': '-40px', 'margin-top': '-20px', width: '290'}, 'fast');},
			function(){	$(this).find("img").animate({height: '160', 'margin-left': '0px', 'margin-top': '0', width: '250'}, 'fast');	}
			);


});


		

