function show_hide(id){
	if($(id).style.display=='block'){
		$(id).style.display = 'none';
	}else{
		$(id).style.display = 'block';
	}
} 

