
(function($) {
	$.fn.customFadeIn = function(speed, callback) {
		$(this).fadeIn(speed, function() {
			if(jQuery.browser.msie)
				$(this).get(0).style.removeAttribute('filter');
			if(callback != undefined)
				callback();
		});
	};
	$.fn.customFadeOut = function(speed, callback) {
		$(this).fadeOut(speed, function() {
			if(jQuery.browser.msie)
				$(this).get(0).style.removeAttribute('filter');
			if(callback != undefined)
				callback();
		});
	};
})(jQuery);


$(document).ready(function(){
	$('#banner').fadeTo(2000,1.0).customFadeIn(750, function(){
		$('#para1').fadeTo(1000,1.0).customFadeIn(750, function(){
			$('#para2').fadeTo(2000,1.0).customFadeIn(1500, function(){
				$('#para3').fadeTo(2500,1.0).customFadeIn(2250, function(){
					$('#para4').fadeTo(1500,1.0).customFadeIn(2250, function(){
						$('#nav-box').fadeTo(500,1.0).customFadeIn(1000); $('#bottom-box').fadeTo(500,1.0).customFadeIn(1000); 
					});
				});
			});
		});
	}); 
});
