// JavaScript Document
document.write('<table width="1000" border="0" cellpadding="0" cellspacing="0" id="copy"><tr><td align="left" class="footercopy">&copy;2008 BusinessMart.com.</td><td align="right" class="footercopy"><a href="http://www.businessmart.com/rss/pp.php"><img src="https://www.businessmart.com/images/minirss.gif" width="26" height="10" border="0"></a> <a href="http://www.businessmart.com/businessmartupdate.xml"><img src="https://www.businessmart.com/images/miniXml.gif" width="25" height="10" border="0"></a> </td></tr><tr><td colspan="2" align="center" valign="top" class="footercopy"><a href="http://www.businessmart.com/business-broker-membership.php" class="footercopy">Broker Membership</a> | <a href="http://www.businessmart.com/member/help.php?section=conditions" class="footercopy">Terms & Conditions</a> | <a href="http://www.businessmart.com/member/help.php?section=business" class="footercopy">Privacy Policy</a> | <a href="http://www.businessmart.com/broker-resources/index.php" class="footercopy">Resources</a> |<a href="http://www.franchisebuyersnetwork.com/" class="footercopy">Franchise Opportunities</a> | <a href="http://www.websitetrafficrankings.com/" class="footercopy">Website Traffic Ranking</a> | <a href="http://www.businessmart.com/sitemap.php" class="footercopy">Sitemap</a> | <a href="http://www.businessmart.com/member/help.php?section=contactus&mode=update" class="footercopy">Contact Us</a><br><br></tr></table>');
var isIE6 = (navigator.appVersion.indexOf("MSIE")!=-1 && parseFloat(navigator.appVersion.substring(navigator.appVersion.indexOf("MSIE")+5)) < 7);
var isIE7 = (navigator.appVersion.indexOf("MSIE")!=-1 && parseFloat(navigator.appVersion.substring(navigator.appVersion.indexOf("MSIE")+5)) >= 7);
function hideSelects(){
	//need this line to debug an IE7 only bug with their dropdown menu and our strict doctype
	if(isIE7)	document.getElementById("dropdown").style.margin = "15px auto auto -139px";
	if(isIE6){
		var dds = document.getElementsByTagName("select");
		for(var i = 0; i < dds.length; i++){
			dds[i].style.visibility = "hidden";	
		}
	}
}
function showSelects(){
	if(isIE6 && document.getElementById('dropdown').style.display=="none"){
		var dds = document.getElementsByTagName("select");
		for(var i = 0; i < dds.length; i++){
			dds[i].style.visibility = "visible";	
		}
	}
}

function init(){
	var dd =	document.getElementById("button");
	var mu = document.getElementById("dropdown");
	addEventSimple(dd,"mouseover",hideSelects);
	addEventSimple(dd,"mouseout",showSelects);
	addEventSimple(mu,"mouseout",showSelects);
	addEventSimple(mu,"mouseover",hideSelects);
}

function addEventSimple(obj,evt,fn) {
	if (obj.addEventListener)
		obj.addEventListener(evt,fn,false);
	else if (obj.attachEvent)
		obj.attachEvent('on'+evt,fn);
}

function removeEventSimple(obj,evt,fn) {
	if (obj.removeEventListener)
		obj.removeEventListener(evt,fn,false);
	else if (obj.detachEvent)
		obj.detachEvent('on'+evt,fn);
}
init();
