$(document).ready(function(){

	$('.sf-menu').superfish({
        delay:       100,
        speed:       'fast',
        autoArrows:  false,
        dropShadows: true
	});
	
	
	// SLIDESHOW
	if ($.isFunction(jQuery.fn.cycle)) {
		
		$('#testimonial_slideshow').cycle({ 
		    timeout: 10000,
		    speed: 1000,
		    pause: 1,
		    cleartypeNoBg: true
		});
		
	}
	
	// TEXT TICKER
	var str = $('#home_featured .description p').html();
	
	if( str != null ) {
		$('#home_featured .description p:first').html("");
		var spans = '<span>' + str.split(/\s+/).join(' </span><span>') + '</span>';
		$(spans).hide().appendTo('#home_featured .description p:first').each( function(word) {
	    	$(this).delay(100 * word).fadeIn();
		});
	}
	
});
