$(document).ready(function(){
	
	/*if($('#sidebar').length){
		equalHeight($("#sidebar, #text"));
	}*/
	
	if ($('.list-products').length) {
		$('.list-products li').each(function () {
			var urlLink = $(this).children('a').attr('href');
			$(this).hover(function(){
				$(this).addClass('hovered');
			}, function(){
				$(this).removeClass('hovered');	
			});
			$(this).click(function(){
				window.location.href = urlLink;
			});
		});
	}
	
	$("a.enlarge-thumb").fancybox({
		'overlayOpacity': 0.85, 'overlayColor': '#d7d2bb'
	});

	$("a[rel='_top']").click(function() {
		$('html, body').animate({
			scrollTop: 0
		}, 'slow');
		return false
	});
	
	/*$(document).bind("contextmenu",function(e){
        return false;
    });*/
	
	
});

function underConstruction(){
	alert("Questo servizio e' ancora in fase di attivazione. Torna a trovarci presto.");
}
