
	/**************cookie handling************************/

	
	//to clear default field value
	function clearText(thefield){
		if (thefield.defaultValue==thefield.value)
			thefield.value = ""
	} 
	
	function setBackText(thefield){
		if (thefield.value=="")
			thefield.value = thefield.defaultValue;
	} 
	
	
	function common() {	
	
		$("table.table_skinned tr:odd").addClass("rw"); 
	}
	$(document).livequery(common);
