$(document).ready(function() {
var myHash=window.location.hash;
//if there is a #r in the URL, show the redirect message
	if(myHash=='#r'){
		$("#redirect_message").slideDown("slow");
		$(".close_message_btn").click(function() {
  			$("#redirect_message").slideUp("fast");
		});
	}	
});
						   

 
