function clickMenu(event) {
	if ( event.target != this ) {
			return;
	}
	var x, y, id;
	x = $('#productmenu').position().left + $('#productmenu').width();
	y = $(this).offset().top;
	id = $($(this)).html().toLowerCase().replace(/ /g, '');
  $('#product').hide(350, function() {
			$($('#product .prodotto')).appendTo('#contenitore');
			$($('#contenitore #' + id)).appendTo("#product");
			$('#product').css('left', x);
			$('#product').css('top', y);
			$('#product .prodotto').show();
			$('#product').show(350);
		});
	event.stopPropagation();
}

function hideMenu() {
	$('#product').hide(350, function() {
			$($('#product .prodotto')).appendTo('#contenitore');
	});	

}

$( function () {
    $('.categoria a').click(clickMenu);
	$('#close').click(hideMenu);
});
