function goLocation(theObject) {
	window.location=$(theObject).find("a.bglnk").attr("href");
	return false;
}
		
$(document).ready(function(){

	$('input[type="text"], textarea, input[type="password"]').focus(function() {
	    value=$(this).val();
	    $(this).attr("value","");
	});
	$('input[type="text"], textarea').blur(function() {
	    if($(this).val()=="") {
	        $(this).val(value);
	    }
	});



});
		

