$(document).ready(function(){
	$("#diaporama .thumb").mouseover(function(){
		$(this).animate({ 
			 width:"100px",
			 height:"100px"
		}, 100, "easeOutQuad");
	});
	$("#diaporama .thumb").mouseleave(function(){
		$(this).animate({ 
			 width:"90px",
			 height:"90px"
		}, 100, "easeOutQuad");
	});
	$("#diaporama .thumb").click(function(){
		$("#rightcolumn div").load("includes/product.php?id="+$(this).attr("id"));
	});
	$(".email").html("info@virginiadelgado.com");
	/*$("img").rightClick( function(e) {
		alert("(c) VIRGINIA DELGADO");
	});*/
	$(document).noContext();
});
