// light box

		$(document).ready(function() {
			$(".lightbox").lightbox({
			    fitToScreen: true,
			    imageClickClose: true
		    });			      	
        });
        
// slideshow
	
	$(document).ready(function(){
		$('#header_img').cycle({
			fx: 'fade',
			random: true,
			delay: -2000,
			speed: 2000,
		    next: '.slideshow', 
		    pause: 1,
			timeout: 5000
		});
	})