function showdiv(id){
	if(document.getElementById(id).style.display!='none'){
			$('#'+id).fadeOut('fast',function(){});	
		}
	if(document.getElementById(id).style.display=='none'){
			$('#'+id).fadeIn('fast',function(){});	
		}
	}
