
//-- STARTUP CODE ------
$(document).ready(function(){



	// Start this sites menu system
	jQuery(function(){
		jQuery('ul.sf-menu').superfish({ 
			delay:       800,                            // one second delay on mouseout 
			animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
			speed:       500, 		                      // faster animation speed 
			autoArrows:  false,                           // disable generation of arrow mark-up 
			dropShadows: false                            // disable drop shadows 
		});
	});


	// Create rounded corners
	


	// BAck to index, anyone?
	$("#logo").css('cursor', 'pointer').click( function(){
		window.location.href="/";
	});
	
	
	
});