$(document).ready(function () {

//FRONT
	$("div.carousel").carousel( { 
		pagination: true,
		nextBtn: '<span class="carousel-control previous carousel-next"></span>',
		prevBtn: '<span class="carousel-control previous carousel-prev"></span>',
		loop: true,
		autoSlide: true,
		autoSlideInterval: 4000,
		effect: 'slide',
		animSpeed: 'slow'
	} );

	$(".closemessage").click(function(){
		$(this).parent().fadeOut(800);
		return false;
	});

//END FRONT

	if ($("a.image_gallery").length) { // implies *not* zero
		$("a.image_gallery").fancybox({
			'speedIn'		:	100, 
			'speedOut'		:	100, 
			'overlayShow'	:	true,
			'titleShow'		:	true,
			'titlePosition' :	'over',
			'cyclic': true,
			'changeSpeed': '1',
			'changeFade': 'fast',
		});
	}	
		
});
