$(document).ready(function() {
	
	//hide all things to be revealed
	initpage();

});

function initpage(){
	
	//hide anything with class=hidden
	$('.hidden').hide();
	
	Shadowbox.init({
		players:    ["iframe"],
		overlayOpacity: 0.9
	});
	
	/*$('#slideshow').cycle({
		fx: 'fade',
		speed:   300, 
		timeout: 3000
	});*/
	

	
}





