// initialise plugins
$(function(){
	jQuery(function(){
		// prettyphoto init
		jQuery("a[rel^='prettyPhoto']").prettyPhoto({
			animationSpeed:'slow',
			theme:'facebook',
			slideshow:false,
			autoplay_slideshow: false,
			show_title: true,
			overlay_gallery: false
		});
		// carousel init
		jQuery(".carousel").jCarouselLite({
		  btnNext: ".next",
		  btnPrev: ".prev"
	 	});
		// carousel effect
		jQuery(".carousel img").hover(function(){
			jQuery(this).fadeTo(200, .6)
		}, function(){
			jQuery(this).fadeTo(200, 1)
		})
})
});
