function hideit(cls){
//alert('hide'+id);
				//obj = document.getElementById(id);
				//obj.style.display = "none";
	jQuery('.'+cls).hide();
}

function showit(cls){

	jQuery('.'+cls).show();
//alert('show id');
				//obj = document.getElementById(id);
				//obj.style.display = "";
}

