
function ClearInput(target, defaultval){
	if(target.value == defaultval){
		target.value = "";
		target.style.color = "#00A2E0";
	}
}

function ReplaceInputPrompt(target,defaultval){
	if(target.value == ""){
		target.value = defaultval;
		target.style.color = "#B7B7B7";
	}
}

function fixMenus(){
	//just removes the last commas from the list of menu items. both the main and sub menu
	if(document.getElementById){
		if(document.getElementById("hmenu")){
			var topMenuEl = document.getElementById("hmenu");
			var topLinks = topMenuEl.getElementsByTagName("a");
			var numberOfTopLinks = topLinks.length;
			if (numberOfTopLinks > 0){
				topLinks[numberOfTopLinks-1].style.backgroundImage='none';
			}
		}
		
		
	}

}

function clearme(formItem, keyword)
{ 
	if (formItem.value == keyword) formItem.value = ''; 
}


