/* 
  *This is a jquery plugin
*/

/* This Function Controls jQuery cycle */
	$(document).ready(function(){ 
		$("ul.sf-menu").superfish({ 
			pathClass: 'current',
			pathLevels:    1,
			speed:         'normal',				// speed of the animation. Equivalent to second parameter of jQuery’s .animate() method 
    		autoArrows:    true,					// if true, arrow mark-up generated automatically = cleaner source code at expense of initialisation performance 
    		dropShadows:   true,				// completely disable drop shadows by setting this to false
			animation: {height:'show'},		// slide-down effect without fade-in 
            delay:     1200						// 1.2 second delay on mouseout 
        });

    });
