// JavaScript Document
$(document).ready(function() { 
        $('ul.sf-menu').superfish({
					delay:         500,                // the delay in milliseconds that the mouse can remain outside a submenu without it closing 	
 					animation:     {opacity:'show',height:'show'},   // an object equivalent to first parameter of jQueryís .animate() method 					
	 				dropShadows:   true,               // completely disable drop shadows by setting this to false 	
					autoArrows:    false,               // if true, arrow mark-up generated automatically = cleaner source code at expense of initialisation performance 
					speed:         'fast'           // speed of the animation. Equivalent to second parameter of jQueryís .animate() method 
					});
		  $("a.plan-zh-gross").fancybox({ 
			'zoomSpeedIn': 0, 
			'zoomSpeedOut': 0, 
			'overlayOpacity': 0.75,
			'overlayShow': true
		}); 
		  
    }); 
