// Perform when document is ready
$(document).ready(function(){

	// Video Div
	var so = new SWFObject("videoPlayer.swf", "newSWFObject", "465", "370", "8");
	so.addParam("wmode", "transparent");
	so.addParam("allowScriptAccess", "always");
	so.useExpressInstall('expressinstall.swf');
	so.write("videoDiv");

	// Gallery Div
	var so = new SWFObject("photoGallery.swf", "newSWFObject1", "425", "481", "8");
	so.addParam("wmode", "transparent");
	so.addParam("allowScriptAccess", "always");
	so.useExpressInstall('expressinstall.swf');
	so.write("photoDiv");

});

var curElement = "#about";

function show ( showElement ){
	if(showElement != curElement){
		$(curElement).fadeOut(250, function(){
			$(showElement).fadeIn(250);
			curElement = showElement;
		});
	}
}
