focus_fix_label = function (el, value) 
{	
	if ($(el).hasClass('passwd')) {
		$(el).hide();
		var id = '#' + el.id.replace('_plain', '');
		$(id).show();
		$(id).focus();
	}
	
	if ($(el).val() == value) {
		$(el).val("");
	}
}

blur_fix_label = function (el, value) 
{
	if ($(el).val() == '') {
		if ($(el).attr('type') == 'password') {
			$(el).hide();
			var id = '#' + el.id + '_plain';
			$(id).show();
			$(id).val(value);
		} else {
			$(el).val(value);
		}
	}
}

$(document).ready(function () {
	$("#menu ul li").hover(
	  function () {
	    $(this).addClass('hover');
	  }, 
	  function () {
	    $(this).removeClass('hover');
	  }
	);
});
