window.onload = function(){
	$("#menu").children("div").mouseover(function(){
		$(this).addClass("over");
	});
	
	$("#menu").children("div").mouseout(function(){
		$(this).removeClass("over");
	});
	$("a").hover(
		function(){
			$(this).children("img").fadeTo(150, 0.7);
		},
		function(){
			$(this).children("img").fadeTo(150, 1);
		}
	);
}

