$(document).ready(function(){	
	$("ul#mainNav li:last").addClass("last");
	$("div#footer ul li:last").addClass("last");
	$("ul#prodLinks li").each(function(i) {					   
		if((i+1)%2 == 0) {
			$(this).addClass("center");
		}
	});
	
	
	
	var path = $('#imgBack').attr("src");
	var description = $('#sottotitolo').html();
	var title = $('#titleBold').html();
	$('#sectors li a').each(function (i) {
		$(this).hover(
		  function () {
			var hovered = $(this);
			$('#imgBack').hide(0, function() {
				var data = $(hovered).attr("id");
				var new_description = $(hovered).attr("name");
				var new_title = $(hovered).attr("title");
				$('#imgBack').attr("src", "public/images/gallery/"+data);	
				$('#imgBack').show(0);
				$('#sottotitolo').html(new_description);
				$('#titleBold').html(new_title);
			 });
		  }, 
		  function () {
			/*$('#imgBack').attr("src", path);*/
		  }
		)							  
		$('#sectors ul').mouseleave(function(){
			$('#imgBack').attr("src", path);
			$('#sottotitolo').html(description);
			$('#titleBold').html(title);
		}); 							  
	 }); 
	
	
	$('#prodNav li a').each(function (i) {
		$(this).hover(
		  function () {
			var hovered = $(this);
			$('#imgBack').hide(0, function() {
				var data = $(hovered).attr("class");
				var new_description = $(hovered).attr("name");
				var new_title = $(hovered).attr("title");
				$('#imgBack').attr("src", "public/images/gallery/"+data);	
				$('#imgBack').show(0);
				$('#sottotitolo').html(new_description);
				$('#titleBold').html(new_title);
			 });
		  }, 
		  function () {
			/*$('#imgBack').attr("src", path);*/
		  }
		)							  
		$('#prodNav ul').mouseleave(function(){
			$('#imgBack').attr("src", path);
			$('#sottotitolo').html(description);
			$('#titleBold').html(title);
		}); 							  
	 }); 
	
	
});
