function loadBlueBanner()
{
	loadBanner('blue', 'Welcome to Kingfisher', 'Shopping in Redditch made easy...');
};

function loadPurpleBanner()
{
	loadBanner('purple', 'Fun for all!', 'Competitions, Kid\'s Club, Puzzles, Games. Plus lots more!');
};

function loadOrangeBanner()
{
	loadBanner('orange', 'Places to eat', 'Recharge your shopping batteries over lunch');
};

function loadMagentaBanner()
{
	loadBanner('magenta', 'Charlie\'s Kids\' Club', 'Enjoy the benefits of becoming a Kids\' Club member!');
};

function loadFindBlueBanner()
{
	loadBanner('findblue', 'Welcome to Kingfisher', 'Shopping in Redditch made easy...');
};

function loadGreyBanner()
{
	loadBanner('grey', 'Trading with Kingfisher', 'The perfect platform to reach new customers');
};

function loadGreenBanner()
{
	loadBanner('green', 'Shopping at Kingfisher', 'More choice than ever before...');
};

function loadBanner(colour, heading, paragraph)
{
	var flashvars = {
		xmlFile: __RELATIVE_PATH + "/flash/scenes.xml",
		sceneColour: colour,
		headingText: heading,
		paragraphText: paragraph
	};
	
	var params = {
		allowscriptaccess: "always",
		wmode: 'transparent'
	};
	
	var attributes = {
		allowscriptaccess: "always"
	};
	
	swfobject.embedSWF(__RELATIVE_PATH + "/flash/flash_banner.swf", "flashplayer", "746", "190", "9.0.0", __RELATIVE_PATH + "/flash/expressInstall.swf", flashvars, params, attributes);	
};