$(document).ready(function(){
	fixMenus();
	photoPanel();
});

function fixMenus(){
if ($.browser.msie) {
	var zIndexNumber = 1000;
	$('div').each(function(){
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 1;
	});
}
}

function photoPanel(){
	  var fo = new SWFObject("/chcPanels.swf", "mainImagePanel", "730", "230", "8");
	  fo.addParam("wmode", "transparent");
	  fo.write("flashPanel");
}

