/*
 * This fuction checks the browser and customizes the CSS
 *
 */
function browserCheckMenuH1(){
    if(navigator.appVersion.indexOf("MSIE 6.0")==-1){
	if(navigator.vendor&&navigator.vendor.indexOf("Apple")!=-1){
	//	document.write('<style type="text/css" media="screen"> em{font-weight:inherit;}<\/style>');
//mac fix
	}
}else{
	//write in stuff for ie 6 alpha pngs.
	document.write('<style type="text/css" media="screen">#menu{background-image:none}<\/style>');
	document.write('<div id="ie_fix"><img src="images/structural/right_shadow.png" width="8" height="370" alt="Right Shadow"><\/div>');
	document.write('<div id="ie_panel"><\/div>');
    }

}