$(document).ready( function() {
	
	// Check for flag
	sFullURL = parent.document.URL;
	if( sFullURL.indexOf('?intro') != -1) {
		$('#mainbackground').hide();
		$('#intro').show();
		$('#footer').hide();
		var so = new SWFObject(LINKROOT+'/images/frontend/intro.swf','introswf','1024','786','10');
		so.addParam('allowscriptaccess','always');
		so.addParam('allowfullscreen','true');
		so.addParam('wmode','transparent');
		so.write('intro');
		

	}
});

function hideIntro() {
	$('#intro').hide();
}

function hideBg() {
	$('#mainbackground').show();
	$('#footer').show();
	$('#intro').css('background-image','none');

}
