
function startGallery() {
	var myGallery = new gallery($('myGallery'), {
		timed: true,
		showArrows: false,
		showInfopane: false,
		showCarousel: false,
		embedLinks: true,
		delay: 5000
	});
	document.gallery = myGallery;
	
}


function startContactGallery() {
	var myGallery = new gallery($('myContactGallery'), {
		timed: true,
		showArrows: false,
		showInfopane: false,
		showCarousel: false,
		embedLinks: true,
		delay: 10000
	});
	document.gallery = myGallery;
	
}




function doFade(){
YAHOO.util.Dom.setStyle(document.body, 'opacity', '0');
var ani = new YAHOO.util.Anim(document.body , {
 opacity: {from: 0, to: 1 }
 }, 3, YAHOO.util.Easing.easeOut);
ani.animate();
}



