var changeValText = function(sClass){
	$(sClass).live("focus", function(){
		var obj = $(this);

		if(obj.attr("title") == obj.val()){
			obj.val("");
		}
	}).live("blur", function(){
		var obj = $(this);

		if("" == obj.val()){
			obj.val(obj.attr("title"));
		}
	}).blur();
}
	
$(document).ready(function() {
	$('.menu LI').mouseenter(function() {
		$(this).addClass('hover');
	}).mouseleave(function() {
		$(this).removeClass('hover');
	});
});
