// Some JS specific to WorldPostcodes.

function InitWorldPostcodes(){
	// Handle transparency issue with PNG image in the menu - IE6 has an issue with this.
	// See http://allinthehead.com/retro/338/supersleight-jquery-plugin for source of plugin.
	
	// The country flags in the languages list are all PNGs.
	$('#navcontainer').supersleight({shim: '/static/transparent.gif'});
	
	// Search results tables have a png magnifier icon. I run this every time, even though
	// many pages will not have these exact #ids.
	$('#PlaceExact').supersleight({shim: '/static/transparent.gif'});
	$('#PlaceFuzzy').supersleight({shim: '/static/transparent.gif'});
	
};

