//NIVO SLIDER CALL
jQuery(window).load(function() {
     
		
//EASY FANCYBOX CALL	
	
			jQuery("a.fancybox").fancybox({
				'centerOnScroll'	: true,
				'titleShow'		: false,
				'autoScale'		: true
			});
			
			jQuery("a.videoBox").click(function(){
				jQuery.fancybox({
					'padding'		: 0,
					'overlayOpacity'	: '0.9',
					'overlayColor'	: '#333',
					'centerOnScroll'	: true,
					'autoScale'		: true,
					'transitionIn'	: 'none',
					'transitionOut'	: 'none',
					'title'		: this.title,
					'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/') +"&amp;fs=1&amp;autoplay=1&amp;rel=0&amp;showinfo=0",
					'type'			: 'swf',
					'swf'			: {
						'wmode'		: 'transparent',
						'allowfullscreen'	: 'true'
					}
				});
				return false;
			});

			  
//FOR DROP DOWN MENU
		  
		  jQuery('ul.sf-menu').superfish({     
				autoArrows:false                          
			});
});
