window.addEvent("domready", function(){
	
	if ($("mapworld")) {
		var flash = new FlashObject("/_flash/map/map.swf", "mapworld", "375", "255", "8", "#ffffff");
		flash.addParam("menu","false");
		flash.addParam("quality","high");
		flash.addParam("WMODE","transparent");
		flash.write("mapworld");
	}
	
	$$(".stockistoptions").each(function(el){
		
		$ES("select", el).each(function(sel){
			sel.addEvent("change", function(){
				sel.form.submit();
			});
		});
		
		$ES("input", el).each(function(input){
			if (input.getProperty("type") == "image" && input.getProperty("id") != "searchbypostcode"){
				input.setStyle("display", "none");
			}
		});
		
	});
	
});
