﻿    //this is getting the lightbox effect working
	$(document).ready(function(){
		
		jQuery(document).ready(function() {
			$("a.zoom").fancybox({
				'zoomSpeedIn'		:	500,
				'zoomSpeedOut'		:	500
			});
		});
		
		
		$(document).ready(function() {
			$('.slideshow').cycle({
				fx: 'uncover', // choose your transition type, ex: fade blindX , blindY , blindZ , cover , curtainX , curtainY , fade , fadeZoom , growX , growY , none , scrollUp , scrollDown , scrollLeft , scrollRight , scrollHorz , scrollVert , shuffle , slideX , slideY , toss , turnUp , turnDown , turnLeft , turnRight , uncover , wipe , zoom 
				speed:    900, 
			timeout:  6000 
			});
		});
		
		
	});
	
	

