$(document).ready(function() {

	
	// ROLL OVER MENU PRINCIPALE
	$('#mainMenu a').hover(
	  function () {
	
		$(this).css('color','#FFF');
		$(this).parent().animate({backgroundPosition: '0px -82px'},150);
	
	  }, 
		// ROLL OUT
		function () {
			$(this).css('color','#000');
	   		$(this).parent().animate({backgroundPosition: '0px 0px'},100);
	  }
	);
	



});
