$(document).ready(function(){
	
	h1 = $('div.left').height();
	h2 = $('div.right').height();
	
	if(h1 > h2){
		$('div.right').height(h1);
	}else{
		$('div.left').height(h2);
	}
	
	$('#flash').flash(
		{src:'/assets/slideshowpro.swf',width:671,height:570,wmode:'opaque',
		flashvars: { paramXMLPath: "/assets/param.xml", initialURL: escape(document.location), xmlFilePath: "/gallery/gallery.xml" }}
	 );
	
});
