MainNavigation = function(ElementId)
{
	navRoot = document.getElementById(ElementId).getElementsByTagName("ul")[0];
	for (i=0; i<navRoot.childNodes.length; i++)
	{
		node = navRoot.childNodes[i];
		if (node.nodeName=="li")
		{
			node.onmouseover=function()
			{
				this.className+=" sfhover";
			}
			node.onmouseout=function()
			{
				this.className=this.className.replace("sfhover", "");
			}
		}
	}
}

$(document).ready(function() {
   	$('input.nodashes').val("No dashes")
	$('input.nodashes').focus(function() {
		$(this).val('');
   	});
   	$('input.nodashes').blur(function() {
		if ($(this).val() == '') {
   			$(this).val("No dashes");
   		}
   	});
});
