$(function()
{	
	if(! $.browser.msie){
	
		$('#intro-wrapper').css({opacity: 0});
		
		
		$('#intro-wrapper').animate(
			{opacity: 1}, 
			{
				duration : 6000,
				queue	 : false,
				easing	 : 'easeOutExpo'
		});
	
		$('#intro-container').animate(
				{opacity: 1}, 
				{
					duration : 6000,
					queue	 : false,
					easing	 : 'easeOutExpo'
		});
		

	}

});

$.easing.easeOutExpo = function (x, t, b, c, d) {
	return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
};
