/* initialize banners */
function initBanners(e) {
	
	var banners = new Array();
	banners.push({location: 0, id: 'banner_location_left'});
	banners.push({location: 1, id: 'banner_location_center'});
	//banners.push({location: 2, id: 'banner_location_2'});
	banners.push({location: 3, id: 'banner_location_right'});

	banners.each(function (banner) {
		//skip if element id does not exists
		if ($(banner.id) != null) {
			var swf = new SWFObject("/site_assets/flash/banner.swf", banner.id, "170", "75", "8", "#FFFFFF");
			swf.addParam("wmode", "transparent");
			swf.addVariable("xmlFeedUrl", "/index.php?xml=RandomBanner%26location="+banner.location);
			swf.write(banner.id);
		}
	});
}

/*function initNewsLetterSubscribe(e) {
	var swf = new SWFObject("/site_assets/flash/newsletter.swf", "newsletter_subscribe", "170", "75", "8", "#FFFFFF");
	//swf.addParam("wmode", "transparent");
	swf.write("newsletter_subscribe");
}*/

function initEcardSongPlayer(containerId, soundUrl) {
	var swf = new SWFObject("/site_assets/flash/player_mp3_mini.swf", containerId, "200", "20", "8", "#000000");
	swf.addVariable("mp3", soundUrl);
	swf.addVariable("autoplay", 1);
	swf.write(containerId);
}

function initEcardViewer(containerId, url) {
	var swf = new SWFObject("/site_assets/flash/ecard.swf", containerId, "475", "355", "8");
	swf.addParam("wmode", "transparent");
	swf.addVariable("url", url);
	swf.write(containerId);
}

Event.observe(window, "load", initBanners);
//Event.observe(window, "load", initNewsLetterSubscribe);