$(document).ready(function(){
	
	
	// menu
	$("#menu a").before("<span></span>")
	$("#menu a").hover(function() {
        $(this).siblings('span').show('fast');
    }, function() {
        $(this).siblings('span').hide('fast');
    });



});


function doClear(theText) { if (theText.value == theText.defaultValue) { theText.value = "" } }
function doDefault(theText) { if (theText.value == "") { theText.value = theText.defaultValue } }

