$(document).ready( function () {

	
	// Modifico il colore dell'interfaccia
	$("li").hover( function () {
		
		switch ( $(this).attr("id") ) {
		
			// Bottone verde
			case 'web': {
				$("li").children("a").children("b").css({color: '#ffffff'});
				$("#logo_index a").css({color: '#688d04'});
				$(this).children("a").children("b").css({color: '#688d04'});
				$("#logo_index").css({backgroundPosition: "0px 0px"});
			}
			break;
			
			
			// Bottone arancio
			case 'software': {
				$("li").children("a").children("b").css({color: '#ffffff'});
				$("#logo_index a").css({color: '#b03e06'});
				$(this).children("a").children("b").css({color: '#b03e06'});
				$("#logo_index").css({backgroundPosition: "0px -50px"});
			}
			break;
			
			
			// Bottone blu
			case 'it': {
				$("li").children("a").children("b").css({color: '#ffffff'});
				$("#logo_index a").css({color: '#084cbc'});
				$(this).children("a").children("b").css({color: '#084cbc'});
				$("#logo_index").css("background-position", "0px -100px");
			}
			break;
			
		}
		
	}, function () {
	});
	
	
});