var flashvars = {};
var params = {wmode: 'opaque'};
var attributes = {};
swfobject.embedSWF("flash/home-main.swf", "banner", "100%", "350", "9.0.0", "expressInstall.swf", flashvars, params, attributes);

var gbWidth  = 780;
var gbHeight = 577;

$(document).ready(function()
{
	// What's on pop up.
	$('ul#whatsOnList h2 a, ul#whatsOnList div.logo a').click(function(e)
	{
		e.preventDefault();
		
		var heading = $(this).parent('li').find('h2 a').text();
		var target  = $(this).attr('href');
		GB_showCenter(heading, target, gbHeight, gbWidth);
	});
	
	// Feature exhibition pop up.
	$('div#featureExhibitInfo a').click(function(e)
	{
		e.preventDefault();
		
		var target  = $(this).attr('href');
		GB_showCenter('', target, gbHeight, gbWidth);
	});
	
});
