/* ========================================================================== ##
##  Page Loading Indicator: jQuery Plugin                                     ##
##  Author: Alexei Rodionov (Алексей Родионов)                                ##
##  Version: 1.0 (29-12-2007)                                                 ##
##  Dual licensed under the MIT and GPL licenses                              ##
## ========================================================================== */
function beforeunload() {
	$('#bodyContent').hide();
	$('#bodyLoading').css('opacity', '1')
};
$(function() {
	$('#bodyLoading').animate({'opacity': '0'}, 400, function() {
		$('#bodyContent').css('visibility', 'visible');
	})
});
