// JavaScript Document

/* Promotions */

	function nascondi_widget_promotions(){
		jQuery( "div#promotion_masked" ).animate({
		  'margin-top':-295,
		}, 1000, "easeInOutExpo");
		
		jQuery("span#piu_promo").css("display","inline");
		jQuery("span#meno_promo").css("display","none");
		
	}
	function mostra_widget_promotions(){
		jQuery( "div#promotion_masked" ).animate({
		  'margin-top':-0,
		}, 1000, "easeInOutExpo");
		
		jQuery("span#piu_promo").css("display","none");
		jQuery("span#meno_promo").css("display","inline");
		
	}
	
/* Waht's hot */	
	
	function nascondi_widget_hot(){
		jQuery( "div#hot_masked" ).animate({
		  'margin-top':-196,
		}, 1000, "easeInOutExpo");
		
		jQuery("span#piu_hot").css("display","inline");
		jQuery("span#meno_hot").css("display","none");
		
	}
	function mostra_widget_hot(){
		jQuery( "div#hot_masked" ).animate({
		  'margin-top':-0,
		}, 1000, "easeInOutExpo");
		
		jQuery("span#piu_hot").css("display","none");
		jQuery("span#meno_hot").css("display","inline");
		
	}
