var flash_urls
var start_point = 0

$(document).ready(function () {
    //Collect the Flash URL's and turn them in to an array
	flash_urls = $("#flash_files").html().split(",")
	paths = flash_urls[start_point].split("|")
	
	//Add the Images
	img = '<div id="main"><img src="'+paths[0]+'.jpg" /></div>'
	$("#main").replaceWith(img);
	
	//Load the first flash movie
	load_flash(start_point)


});

function load_flash(id){

	//Add the Images
	paths = flash_urls[id].split("|")
	img = '<div id="main"><img src="'+paths[0]+'.jpg" /></div>'
	$("#main").replaceWith(img);
	
	var so = new SWFObject(paths[1]+".swf", "main", "100%", "100%", "8", "#FFF");
	so.addVariable("ie", "0");
	so.addVariable("app", "");
	so.addVariable("id", "banner_nav");
	so.addParam("scale", "noscale");
	so.addParam("align", "middle")
	so.addParam("wmode", "window")
	so.addParam("allowScriptAccess", "always")
	so.addParam("salign", "lt")
	so.write("main");
}