<!-- Begin

var navName = navigator.appName ;
var brVer = navigator.userAgent; var brNum; var reg = new RegExp('/');
var isOpera = false;
function verNumIE() {
   var indexOpera = brVer.indexOf('Opera');
   
   if(indexOpera > 0){
	  isOpera = true;  
   } else {
	   var brVerId = brVer.indexOf('MSIE');
	   brNum = brVer.substr(brVerId+5,brVerId-(brVerId)+3);
   }

}

function verNumOt() {

   var brVerId = brVer.search(reg);
   brNum = brVer.substring(brVerId+1,brVerId+1+3);

}

if (navName == 'Microsoft Internet Explorer') {

  verNumIE() ;

} else {

  verNumOt() ;

}

var isMacBol = ((navigator.platform.indexOf('Win') > -1) ? false : true);

if(brNum >= '5.5'){
	isMacBol = false;
}

var sPath = window.location.pathname;
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);

if(sPage == "default.asp" || sPage == ""){
	// if its the home page
	if(!isMacBol && !isOpera ){
		//put in the flas header if its not a mac with os9 or a browser older than ie 5.5
		document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="950" height="200"><param name="movie" value="flash/top2.swf"><param name="quality" value="high"><param name="wmode" value="transparent"><embed src="flash/top2.swf" width="950" height="200" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent"></embed></object>');
	
	} else {
		//else put in the image if it is
		document.write('<img src="images/montage.jpg" border="0">');
	
	}
	
//} else if(sPage == "chris-jones.asp" || sPage == "southside-team.html") {
//	if(!isMacBol ){
	//	//put in the flas header if its not a mac with os9 or a browser older than ie 5.5
	//	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="750" height="100"><param name="movie" value="flash/topshortpeople.swf"><param name="quality" value="high"><param name="wmode" value="transparent"><embed src="flash/topshortpeople.swf" width="750" height="100" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent"></embed></object>');
	
//	} else {
	//	//else put in the image if it is
	//	document.write('<img src="images/peoplehead.jpg" border="0">');
	
//	}	
} else {
	// do this if its any other page other than the homepage
	if(!isMacBol && !isOpera ){
		//put in the flas header if its not a mac with os9 or a browser older than ie 5.5
		document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="950" height="100"><param name="movie" value="flash/topshort2.swf"><param name="quality" value="high"><param name="wmode" value="transparent"><embed src="flash/topshort2.swf" width="950" height="100" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent"></embed></object>');
	
	} else {
		//else put in the image if it is
		document.write('<img src="images/montageshort.jpg" border="0">');
	
	}

}

//  End -->
