function replace_banner( section ) {
	
	var flash_path = '/assets/flash/';
	//if(window.location.href.indexOf('localhost') != -1)
	//	flash_path = '/mortgageshop/assets/flash/';
	
	// Default Values
	var width = 243;
	var height = 272;
	
	// Select file (and overide dimension values if needed)
	switch( section ) {
		
		case 'home':
			//swf_file = 'mortgageshop.swf';
			swf_file = 'mortgageshop-sub.swf';
		    break;
		
		case 'sub':
			//swf_file = 'mortgageshop.swf';
			swf_file = 'mortgageshop-sub.swf';
		    break;
		
		default:
		    break;
	}
	
	// No file? uh oh, don't replace
	if (!swf_file) return false;

	// define a new flash object
	var f1 = new FlashObject(flash_path + swf_file, "flash_area", width, height, "7.0.0", "#FFFFFF", false );
	// send parameters to flash 
	f1.addParam("quality", "high");
	f1.addParam("menu", "false");
	f1.addParam("wmode", "transparent");
	// draw the flash element to the screen.
	f1.write("flash_area");
}