jQuery(function(){

/**/

//SUPERFISH MENU
/*
// initialize Superfish plugin
jQuery('ul.sf-menu').superfish({
    autoArrows:  false,
    animation: {height:'show'},   // slide-down effect without fade-in 
    delay: 300               // 1.2 second delay on mouseout


}); 
*/




//MENU CLICK TIMER

// This will hold our timer
var myTimer = {};


jQuery('.sf-menu a').click(function(){
// Get the url of the link
var toLoad = jQuery(this).attr('href');

// Set the timer, load page after timer goes off
myTimer = jQuery.timer(1010,function(){
window.location = toLoad;
});

// Don't let the link do its natural thing
return false;
});






});
