// When the DOM is ready
$('document').ready(function(){
	
	//Cycle the images on frontpage
	if($('#slideshow')) {	
		$('#slideshow').cycle({ 
			fx:      'fade', 
			speed:    800, 
			timeout:  10000
		});
	}
	
	// Enable fancybox for images
	$(".img").fancybox({
		helpers: {
			title: 'inside'
		}
	});
});
