$(function () {
	$("#lhs-bar ul li ul li:last").css("border", "none");
});

$(function () {
	$("#country-selector-select").change (function ()
	{
		window.location.href='/contact-us/' + $(this)[0].options[$(this)[0].selectedIndex].value;
	})
});

$(function () {
	$(".country-language .language-selector a").click (function ()
	{
		$(".country-language").hide();
		$(".country-language" + $(this).attr("href")).show();
	})
});


$(function () {
	if ($("#fading-images").length)
		$("#fading-images").innerfade({speed: 1000, timeout: 5000});
});