/*
	File: 			gilardoni.js
	Creato:			il 10/03/2009
	Da:					Daniele Radogna
	Copyright:	www.nethics.it
*/

// $(document).ready(setup);

var hash = new Object();

hash["img1"] = "images/fep.png";
hash["img2"] = "images/en-doll.jpg";
hash["img3"] = "images/schema.png";
hash["img4"] = "images/mondo.jpg";
hash["img5"] = "images/fep.jpg";
hash["img6"] = "images/fep.jpg";
hash["img7"] = "images/fep.jpg";
hash["img8"] = "images/fep.jpg";

function setup(){
		$("img").bind ("mouseover", "",	showFullResImg).bind ("mouseout", "",	hideFullResImg);
		$("a.unimplemented").bind ("click", "",	deny);
}

function showFullResImg(){
	$("#container").html("<img src='" + hash[$(this).attr("id")] + "'>" )
		$("#container").show();
}

function hideFullResImg(){
		$("#container").hide();
}

function deny(){
		alert("Link attualmente non imlementato; si veda la sezione: sicurezza");
		return false;
}

