function showhide(el_id)
{    
    if (!document.getElementById) return false;
    el = document.getElementById(el_id);
    el.style.display = (el.style.display == "none") ? "block" : "none";        
}

$(function() {
	$("#loginForm #email").focus(function(){
		if($(this).val()=="email")
			$(this).val("");
	}).blur(function(){
		if($(this).val()=="")
			$(this).val("email");
	});	
	
	$("#loginForm #password").focus(function(){
		if($(this).val()=="password")
			$(this).val("");
		
	}).blur(function(){
		if($(this).val()=="")
			$(this).val("password");
	});		
});
