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

$(document).ready(function() {

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

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

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

