$(document).ready(function(){

	if (jQuery('ul.menu').length>0) {
		//Dropdowns 
	    $(window).unload(function(){
			$('ul.menu').hideSuperfishUl();
		});
		$('ul.menu').superfish({
			delay: 0,
			animation: {opacity:'show',height:'show'},
			speed: 'normal',
			autoArrows: false,
			dropShadows: false
		});
	}
	
	if (jQuery('.banner').length>0) {
   	$(".banner").jCarouselLite({
   		auto: 3000, 
   		speed: 1000, 
       	visible: 2.55, 
       	circular: false,
       	btnNext: ".bannerNext",
       	btnPrev: ".bannerPrev"
    	});	
	}
	
	if (jQuery('a.fancybox').length>0) {
		$("a.fancybox").fancybox({
			'transitionIn'	: 'elastic',
			'transitionOut' : 'elastic',
			'speedIn' : 600, 
			'speedOut' : 200, 
			'overlayShow' : true,
			'overlayOpacity' : 0.5,
			'overlayColor' : '#373637'
		});
	}	
		
});		
