$(document).ready(function(){
	$("a img").hover(function() {$(this).fadeTo("slow", 0.7);}, function() {$(this).fadeTo("slow", 1);});
	$("#camel, #camel-giraffe, #nodo, #avilla, #benjamin").hide().fadeIn("slow");	
	$("#products-list a").hover(function() {$(this).find("img").fadeIn("slow");}, function() {$(this).find("img").fadeOut("slow");});
	$("#form-toggle").click(function() {$("#contact-us + div").find("*:visible").fadeOut("slow").end().find("*:hidden").fadeIn("slow");});
});

function remove() {
	if (confirm("Are you sure?")) return true;	
	return false;
}
