var selector = "#home_promotion";

// Hide elements until the flash is loaded.
document.write('<style type="text/css">');
document.write(selector + " {visibility: hidden}");
document.write('</style>');


function doHomePromotion(){
	var el = getElementsBySelector(selector)[0];
	var width = "545";
	var height = "95";
	
	writeFlash(el, "van_banner_mini", width, height);
}

EventUtils.addEventListener(window,'load',doHomePromotion);
