/*
window.onbeforeunload = function() {
	//return 'You need to save your work first.';
	alert('You have not saved your work, if you would like to save your page choose cancel.');
	return false;	
}
*/

$j(document).ready(function() {
	
	messageDisplay();
});



function messageDisplay() {
	$j('#refreshmsg').show().animate({opacity:1},1500).fadeOut(500);	
}
