//-- main buttons -------------
function mOverBtn(divID){
	document.getElementById(divID).style.backgroundColor = '#AACCAA';
	document.getElementById(divID).style.color = '#226622';
}
function mOutBtn(divID){
	document.getElementById(divID).style.backgroundColor = '#226622';
	document.getElementById(divID).style.color = '#ffffff';
}
//-- side menu button functions -------------
function mOverSBtn(divID){
	document.getElementById(divID).style.backgroundColor = '#AACCAA';
	document.getElementById(divID).style.color = '#226622';
	document.getElementById(divID).style.borderTop = '1px solid #AACCAA';
	document.getElementById(divID).style.borderBottom = '1px solid #AACCAA';
}
function mOutSBtn(divID){
	document.getElementById(divID).style.backgroundColor = '#ffffff';
	document.getElementById(divID).style.color = '#000000';
	document.getElementById(divID).style.borderTop = '1px solid #ffffff';
	document.getElementById(divID).style.borderBottom = '1px solid #ffffff';
}
//-- drop down (city and county) selection functionality ------
function gotoCity(){
	selValue = document.navform1.selCity[document.navform1.selCity.selectedIndex].value
	if(selValue !=""){
		gotoPage(selValue)
	}
}
function gotoCounty(){
	selValue = document.navform2.selCounty[document.navform2.selCounty.selectedIndex].value
	if(selValue !=""){
		gotoPage("http://www.allflorists.co.uk/floristsearch.asp?c="+selValue)
	}
}
