$(document).ready(function(){
	$("img.fade").fadeTo(400, 1);

	$("img.fade").hover(function() {
		$(this).fadeTo(400, 0.5);
	}, function() {
		$(this).fadeTo(400, 1);
	});


	$(".zoom").css("text-decoration","none");

	
//	$("#menu div").fadeTo("slow", 0.4);
	
//	$("#menu div").hover(function() {
//		$(this).fadeTo("slow", 1);
//	}, function() {
//		$(this).fadeTo("slow", 0.4);
//	});	

	
});
