/* ---------------------------- 
[Global Javascript]

Project: 		Industrial Hydro-Blast
Last change:	12/14/11 (File created)
Created by:		Third Wave Digital (www.thirdwavedigital.com)
------------------------------- */

$(document).ready(function() {
	
	/* ---------------------------- */
	/* Slideshow
	/* ---------------------------- */
	
	$('#slideshow').cycle({
			fx:    'fade', 
			speed:  500,			
			timeout: 3000
		});
	
	/* ---------------------------- */
	/* Dropdowns
	/* ---------------------------- */

	var config = {    
         sensitivity: 10, // number = sensitivity threshold (must be 1 or higher)    
         interval: 30,  // number = milliseconds for onMouseOver polling interval    
         over: doOpen,   // function = onMouseOver callback (REQUIRED)    
         timeout: 30,   // number = milliseconds delay before onMouseOut    
         out: doClose    // function = onMouseOut callback (REQUIRED)    
    };

    function doOpen() {
        $(this).addClass("hover");
        $('ul:first',this).css('visibility', 'visible');
    }
 
    function doClose() {
        $(this).removeClass("hover");
        $('ul:first',this).css('visibility', 'hidden');
    }

    $("#main-nav li").hoverIntent(config);
	
	
});
