$(function(){
	/*Validate
	$(".validate").each(function(){
		$(this).validate({errorElement: 'span'});
	});*/
	/*Menu Hover*/
	$("#menu").find("img").each(function(){
		var _loader = new Image();
		$(_loader).attr("src", $(this).attr("src").replace(".jpg", "_on.jpg"));
	});
	$("#menu").find("img").hover(
		function(){
			$(this).not(".active").attr("src", $(this).attr("src").replace(".jpg", "_on.jpg"));
			$("#homeMenu ul li").eq($("#menu").find("img").index(this)).find('.efect').hide();
		},
		function(){
			$(this).not(".active").attr("src", $(this).attr("src").replace("_on", ""));
			$("#homeMenu ul li").eq($("#menu").find("img").index(this)).find('.efect').show();
		}
	);
});