// JavaScript Document
$(function() {
	$("#fotogallery_thumbs a").click(function() {
		var mainImage = $(this).attr("href");
		
		//$('#fotogallery_img img').hide('fast', function() {});

		$('#fotogallery_img img').attr({ src: mainImage })
						    .fadeIn('slow', function() {});

		return false;
	});
	
	$("#fotogallery_thumbs a").mouseover(function() {
		//$(this).find("img").css("opacity","1");
		$(this).find("img").addClass("thumb_img_over");
		return false;
	});
	
	$("#fotogallery_thumbs a").mouseout(function() {
		$(this).find("img").removeClass("thumb_img_over");
		return false;
	});
	
	$("#blog_archive_menu").treeview({
			toggle: function() {
				console.log("%s was toggled.", $(this).find(">span").text());
			}
		});
});

$.validator.setDefaults({
			submitHandler: function() { 
			$("#contactForm")[0].onsubmit="";
			$("#contactForm")[0].elements['azione'].value="invia";
			$("#contactForm")[0].action = "contacts.php";
			$("#contactForm")[0].submit();
			}
	});


