function setupAffiliateLocatorCombos(){
	
	var comboboxClasses = {
			comboboxContainerClass: "comboboxContainer",
			comboboxValueContentContainerClass: "comboboxValueContainer",
			comboboxValueContentClass: "comboboxValueContent",
			comboboxDropDownClass: "comboboxDropDownContainer",
			comboboxDropDownButtonClass: "comboboxDropDownButton",
			comboboxDropDownItemClass: "comboboxItem",
			comboboxDropDownItemHoverClass: "comboboxItemHover",
			comboboxDropDownGroupItemHeaderClass: "comboboxGroupItemHeader",
			comboboxDropDownGroupItemContainerClass: "comboboxGroupItemContainer"
		};
		var comboboxSettings = {
			animationType: "none",
			width: 210
		};
	
	//turn list into drop down lists
	dropdown("countries", $("#labelSelectCountry").html());
	
	$("#call-to-action").css("visibility", "hidden");
	/*affiliates*/
	ddCountry = $('#dd-countries').combobox(comboboxClasses, comboboxSettings);
	ddCountry.combobox.onChange = function() {
		$('#dealer-card').fadeOut("fast");
		$.get("/"+lang+"/includes/store-locator/ajax-affiliates.jsp?lang="+lang+"&country="+ddCountry.val(), function(data){
			$('#dealer-card').remove();
			$('#location').append(data);
			$('#dealers-info').jScrollPane();
			document.jsAPI.trackOfficialDealersEvent("affiliate-shown",ddCountry.val());
			$('#dealers-info div div p a').each(function(){
				$(this).click(function(){
					document.jsAPI.trackOfficialDealersEvent("affiliate-clickthrough");
				});
			});
			document.jsAPI.addHistory('/'+lang+'/store-locator/worldwide-rolex-affiliates/'+$('#dd-countries option:selected').attr('id')+'/');
		});
		
	}
	
	//initial load
	if (ddCountry.length > 0){
		$.get("/"+lang+"/includes/store-locator/ajax-affiliates.jsp?lang="+lang+"&country="+ddCountry.val(), function(data){
			$('#dealer-card').remove();
			$('#location').append(data);
			//$('#dealers-info').jScrollPane();
			document.jsAPI.trackOfficialDealersEvent("affiliate-shown",ddCountry.val());
			$('#dealers-info div div p a').each(function(){
				$(this).click(function(){
					document.jsAPI.trackOfficialDealersEvent("affiliate-clickthrough");
				});
			});
		});
		document.jsAPI.addHistory('/'+lang+'/store-locator/worldwide-rolex-affiliates/'+countryName+'/');
	}
}

function processDeepLinks() {
	var url = window.location.href;
	if (url.indexOf('#') > -1) {
		var hash = url.substring(url.indexOf('#')+1);
		window.location = hash;
	}
}


function removeCombos(){
	//remove combos in flash because they get rendered above the movie
	$('#countries').remove();
}

function setupOmnitureClicks(){
	if ($('#bottom-links').length > 0){
		$('#bottom-links li a').each(function(){
			$(this).click(function(){document.jsAPI.trackOfficialDealersClick(s.pageName,this.id);});
		});
	}
}



//register
onloadHTMLHandlers[onloadHTMLHandlers.length] = 'processDeepLinks();setupAffiliateLocatorCombos();setupOmnitureClicks();';
onloadFlashHandlers[onloadFlashHandlers.length] = 'removeCombos();';