function deselectOthers(index) {
	finderForm = document.Find;
	switch (index) {
		case '0':
			finderForm.RedirectIndustry.selectedIndex = 0;
			finderForm.RedirectPartner.selectedIndex = 0;
			break;
		
		case '1':
			finderForm.RedirectProduct.selectedIndex = 0;
			finderForm.RedirectPartner.selectedIndex = 0;
			break;
			
		case '2':
			finderForm.RedirectProduct.selectedIndex = 0;
			finderForm.RedirectIndustry.selectedIndex = 0;
			break;
	}
}
function validateDropDown(dropDown, message) {
	if (dropDown.value == 'default') {
		alert(message);
		return false;
	}
}
function removeBlueBackground() {
	if (!document.getElementById('bannersukhomepageflashTabs')) {
		var b = document.getElementsByTagName("body")[0];
		b.style.background = "#fff url(/resources/images/shared/interface/background.gif) top left repeat-x";
	}
}

/*show flash banner on US main site*/
function showFlash(){
$("#nonUSIPBanner").hide();
$("#countryindicator").hide('slow');
$("#showFlashBanner").show();
}	

/*Change the link to showFlash link on main US site*/
function changeToFlashLink(){
$('.changeFlashLink').attr('href', 'javascript:showFlash()');
}

