
jQuery(document).ready(function(){

	$('.slideshow')
	.cycle({ 
	    fx:     'fade', 
	    speed:  'fast', 
	    timeout: 0, 
	    pager:  '#pager' 
	});
	
	$('a[href$=".jpg"]').fancybox();
	$('a[href$=".JPG"]').fancybox();
	$('a[href$=".png"]').fancybox();
});
