/*
 * Scripts that are specific to the haymakers theme
 */

// when the document is loaded
$(document).ready(function() {
	// initialize superfish drop-down menu
	$('#menu ul').superfish({ 
            delay:       1000,                            // one second delay on mouseout 
            animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
            speed:       'fast',                          // faster animation speed 
            autoArrows:  false,                           // disable generation of arrow mark-up 
            dropShadows: false                            // disable drop shadows 
        });
		
	// initialize homepage slider
	$('#slider').anythingSlider({
		autoPlay            : true,
		delay: 7000,
		startText: "",
		stopText: "",
		hashTags            : false,
		buildNavigation     : false
	});	
	
	// initialize homepage newsticker
	$('#newsticker').anythingSlider({
		autoPlay            : true,
		delay: 5000,
		startText: "",
		stopText: "",
		hashTags            : false,
		buildArrows         : false,
		buildNavigation     : false
	});
}); // end document.ready
