$(document).ready(function(){
	/* Embed Flash via JS so we can have alternative content if Flash is not installed */
	var so = new SWFObject("flash/banner.swf", "main-flash", "730", "330", "8");
	so.addParam("scale", "noscale");
	so.addParam("wmode", "transparent");
	so.write("main-flash");
	
	/* If the flash fails then show the replacement image */
	if(so.write("main-flash") == false) {
		$('#main-flash img').css('display', 'block');
	}
});

