$(function(){ 

	// SLIDER
	$('#slider').slidey({
        'width' : 910,
        'height' : 300,
		'animation' : 'slide',
        'showMarkers' : true,
        'showControls' : true,
        'centerMarkers' : false
    });
	
	// MENU
	var posizione = $("#navigation").position().left + 40 + "px";
	$(".menu-wrapper").bind({
	  mouseover: function() {
	    var idmenu = $(this).attr("id");
		var menu = ".menu-" + idmenu;
		$(menu).css("left",posizione);
		$(menu).show();
		$(this).find("a").first().addClass("active");
	  },
	  mouseout: function() {
	    $(".menu-second").hide();
		$(this).find("a").removeClass("active");
	  }
	});
	
	// GALLERIA
	$(".table-gallery a[rel^='prettyPhoto']").prettyPhoto({
		theme:'dark_rounded',
		autoplay_slideshow: false
	});
	
});
