$(document).ready(function (){

	// animazione menu principale

	$("#header_menu li a").hover(
		function () {
			$(this).animate({ 
				marginLeft: "90px"
				}, 100 );
		}, 
		function () {
			$(this).animate({ 
				marginLeft: "70px"
				}, 100 );
		}
	);
	
	// animazione menu principale CDE

	$("#menuUl li a").hover(
		function () {
			$(this).animate({ 
				lineHeight: "43px"
				}, 50 );
		}, 
		function () {
			$(this).animate({ 
				lineHeight: "53px"
				}, 50 );
		}
	);

	
		// inserico la classe necessaria nei menu del footer
	my_ul = $("#footer_menu_cde li");
	i = 0;
	jQuery.each(my_ul, function() {
      i++;
	  if(i==4){
		i=1;
		$(this).addClass("footer_menu_last");
	  }
	});

	my_ul = $("#footer_menu_tech li");
	i = 0;
	jQuery.each(my_ul, function() {
      i++;
	  if(i==4){
		i=1;
		$(this).addClass("footer_menu_last");
	  }
	});


});


