/*
 * Author: Daniele Asrael "theex" Tagliavini (dunderscoretagliaviniathotmaildotcom)
 */

var colori = {'menu-servizi':'#2676BF', 'menu-progetti': '#5E595F', 'menu-news':'#6C28B8', 'menu-clienti':'#CFA100', 'menu-contatti':'#B80D4F', 'menu-agenzia':'#63A408'};

jQuery(document).ready(function() {
	$("#menutop #mainmenu li a").hover(
		function() {
		    if($(this).attr('class')=='current') return;
			var color = colori[$(this).parent('li').attr('id')]
			$(this).css({'border-bottom' : '2px solid ' + color})
	 		$(this).animate({
				backgroundPosition: '(0 -71px)'
			}, 'fast');

		},
		function() {
		    if($(this).attr('class')=='current') return;
			$(this).stop().animate({
				backgroundPosition:"(0 0)"
				//borderBottom : '2px solid #FFFFFF'
			}, 500,
				function() {
					$(this).css({'border-bottom' : '2px solid #FFFFFF'})
				}
			);
		}
	);
});
