function hideBar(){
	var response = '';
	$.ajax({ type: "GET",   
			 url: "setSession.php",   
			 async: false,
			 success : function(text)
			 {
				 response = text;
			 }
	});
	$('#bottomfull').hide('fast');

}