function galleryInit()
{
	orig_image = $j("#gallery").html();
	$j('#more_photos').click(openGallery);	
}		
		
function openGallery()
{ 
	var g = $j('#gallery');
	var image = $j('#gallery img');
	
	$j('html').animate({scrollTop:0}, 'slow'); 
	
	image.fadeOut('slow');
	g.animate({height:'520px'});
	g.append("<div id='fg' style='width:625px'><div id='fgg' style='background-color:#2c2c2c; display:none;position:relative;'></div></div>");

	setTimeout('revealGallery();',1000);

}
function revealGallery()
{
	var fg = $j('#fg');

	var params = {
		allowFullScreen: 'true',
		wmode: 'transparent'
	};
	swfobject.embedSWF('design/flash/Bechtel Gallery.swf','fgg','625','500','9',null,flashvars, params);
	fg.append('<div style="background-color:#bdbdbd;text-align:right;height:20px;border-bottom:1px solid #e01b22;position:absolute; bottom:0; left:0; width:620px;padding-right:5px;padding-top:2px;"><a href="#" id="close">Close Slide Show</a></div>');
	fg.fadeIn('slow');
	$j('#close').click(closeGallery);
}
		
function closeGallery()
{
	var g = $j('#gallery');
	g.animate({height:'198px'});
	g.empty();
	g.html(orig_image);
	$j('#more_photos').bind('click',openGallery);
}
