  	// initialise plugins
		jQuery(function(){
			// main navigation init
			jQuery('ul.sf-menu').superfish({
				delay:       1000, 		// one second delay on mouseout 
				animation:   {opacity:'show',height:'show'}, // fade-in and slide-down animation 
				speed:       'normal',  // faster animation speed 
				autoArrows:  false,        // generation of arrow mark-up (for submenu) 
				dropShadows: false    // drop shadows (for submenu)
			});
			
			// prettyphoto init
			jQuery("#gallery .portfolio a[rel^='prettyPhoto'], .carousel-box ul li a[rel^='prettyPhoto']").prettyPhoto({
				animationSpeed:'slow',
				theme:'facebook',
				slideshow:false,
				autoplay_slideshow: false,
				show_title: true,
				overlay_gallery: false
			});
			
			// header widget last item class
			jQuery("#widget-header .widget_links ul li:last-child").addClass("last");
			
			// carousel
			jQuery(".carousel").jCarouselLite({
			  btnNext: ".next",
			  btnPrev: ".prev",
			  visible: 3,
			  easing: "easeOutQuad"
		     });
			
			// designers
			jQuery("ul.designers li").hover(function(){
				jQuery(this).find("strong").stop().animate({bottom:"2px"},"medium")
			},function(){
				jQuery(this).find("strong").stop().animate({bottom:"-38px"},"medium")
			});
		});

