$(document).ready(function(){
	
    var ie6 = $.browser_detect('ie',6);
    
	// Calling our splashScreen plugin and
	// passing an array with images to be shown
	
	// If splashscreen already appered check cookie 
	if(!ie6)
	{
		$('#container').splashScreen({
			textLayers : ['images/banner_splash_top.gif',
						  'images/banner_splash_bot.gif'],
			textShowTime	: 200,
			textFade		: false,	// Stops text fading out
			fadeTime		: 1000,
			delay			: 200,
			setCookie		: true,
			extraImgId		: 'header',
			altBg			: $('body'),
			text0TopOffset	: 7,
			text0LeftOffset	: 75,
			text1TopOffset	: 95,
			text1LeftOffset	: 74
		});
    }
	
});

