

 

jQuery(document).ready(function ()
{

	jQuery(".calendarSelectDate").datepicker();
	
	//jQuery(window).unload( function () { alert("Bye now!"); } );
	
     // Check if there's a message
     if(jQuery('#msg').length) {
         // the timeout is there to make things work properly in <acronym title="Internet Explorer">IE</acronym>
         // If we have no timeout <acronym title="Internet Explorer">IE</acronym> will trigger mousemove instantly
         //setTimeout(removeMessage, 1500);
    }
	

});

/*
function removeMessage()
{
    jQuery(document).one('click mousemove keypress', function(e) {
        // Fade the message away after 500 ms
        jQuery('#msg').animate({ opacity: 1.0 }, 1500).fadeOut();
    });
}*/

//http://www.svennerberg.com/2009/03/non-modal-alert-with-jquery/


