
$(document).ready(function() {	
							
	 $('ul.sf-menu').superfish({ 
		delay:       100,                   // one second delay on mouseout 
		animation:   {height:'show'},  		// fade-in and slide-down animation 
		speed:       'medium',                // faster animation speed 
		autoArrows:    true,               // if true, arrow mark-up generated automatically = cleaner source code at expense of initialisation performance 
    	dropShadows:   true
	}); 
	 
	$("a.popup").fancybox({
		'zoomSpeedIn':	400, 
		'zoomSpeedOut':	400, 
		'overlayShow'			: true,
		'overlayOpacity'		: 0.5,
		'padding':		0,
		'easingIn':		'easeInOutQuad'
	});
	
	$("a.trend_frame").fancybox({
		'frameWidth'			: 750,	
		'frameHeight'			: 350,
		'overlayShow'			: true,
		'overlayOpacity'		: 0.5
	});	
	 	
	
 });

