$(function(){
	hoverMenu();
	hoverMenuHome();
});

function hoverMenuHome(){
	var speed = 200;
	if($('#menu_home .item').length==0){return false;}
	
	$('#menu_home .item .light').css({"opacity":"0.3"});
	$('#menu_home .item .desc').css({"opacity":"0"});
	
	$('#menu_home .item').hover(function(){
		$(this).children('.light').animate({"opacity":"1"}, speed);
		$(this).children('.desc').animate({"opacity":"1"}, speed);
		
		$(this).children('img').animate({"top":"50px"}, speed);
	},function(){
		$(this).children('.light').animate({"opacity":"0.3"}, speed);
		$(this).children('.desc').animate({"opacity":"0"}, speed);
		
		$(this).children('img').animate({"top":"60px"}, speed);
	});	
}


function hoverMenu(){
	var speed = 200;
	if($('#menu .item').length==0){return false;}
	
	$('#menu .item .light:not(.sel)').css({"opacity":"0.3"});	
	$('#menu .item').hover(function(){
		$(this).children('.light:not(.sel)').animate({"opacity":"0.8"}, speed);		
	},function(){
		$(this).children('.light:not(.sel)').animate({"opacity":"0.3"}, speed);		
	});	
}
