/*************************************************************/
/// BOX CONCORSO ///
/*************************************************************/

jQuery(document).ready(function() {

    jQuery('.slideBanner p').cycle({
		fx: 'scrollLeft' 
	});
	
});

/*************************************************************/
/// BOX SPAZIO ACCONCIATORI ///
/*************************************************************/

jQuery(document).ready(function() {
	jQuery('#Box_Home_SpazioAcconciatori:hidden:first').fadeIn(1500, function() { 
		var textWidth = jQuery("#textScroll").width();
		var totScroll =  textWidth;
							
		scrollText(totScroll);
		
		function scrollText(totScroll) {
				var vel = totScroll * 16;
				jQuery("#textScroll").animate({ left: - totScroll}, vel, function(){ 
					jQuery("#textScroll").css("left", 300); 
					totScroll = 900;
					scrollText(totScroll); });	
			}
			jQuery('#Box_SpazioAcconciatori_Text').mouseover( function() {jQuery("#textScroll").stop(); totScroll = textWidth });
			jQuery('#Box_SpazioAcconciatori_Text').mouseout(function() { scrollText(totScroll) });
				
		   });
		});

