if(urdang == undefined) var urdang = {};

urdang.countryLinks = new function() {
	jQuery.extend(
		this,  { 
			version: "1.0",
			show: function(code) {		
				$("#flashLinks div").hide();
				$("#"+code).show();
			
				$("#flashLinks #"+code+" div").show();
				
			},
			selectDropdown: function(code) {		
				$("#country").selectOptions(code, true);
			}
		}
	);
}

