// fade out notification bar
$(document).ready(function(){
	$("#messageId").prepend("<span class='close_message'>click to hide this</span>");
	$("#messageId").live("click", function(){
		$(this).fadeOut(200);
	});
	//setTimeout("$('#messageId').fadeOut(300)", 4 * 1000);
});
