$(document).ready(function () {
    
    /** animazione sul menu principale **/
    var $target = $('li.parent');
   /* $target.find("a:first").bind('click', function (event) {
        event.preventDefault();
    });*/
    $target.hover(
		 function () {
		     var $top = ($('#header').height()) - ($(this).height());
		     $(this).stop().animate({
		         top: $top
		     }, 200);
		 },
		  function () {
		      $(this).stop().animate({
		          top: 121
		      }, 200);
		  }
	);

    /** aggiungo dinamicamente classi alla gallery **/
    $("#slidesContainer li:first").addClass("active");
    $("#slidesContainer li").each(function (i) {
        if ((i + 2) % 3 == 0) {
            $(this).addClass("center");
        }
    });

});	
