// replace contact us image with contact vw image
function replaceFindADealer(e, obj){
	if(obj.isDealerSession){
		var pTag1 = window.document.getElementById("so_tout1");
		if(pTag1){
			var sc_tout1 = pTag1.getElementsByTagName('img');
			sc_tout1[0].src = '/global/images/myvw/sc_tout1_a.jpg';
			var anchor = pTag1.getElementsByTagName("a");
			anchor[0].href="http://"+dealersession.dealerDomain+"/ContactUsForm";
		}
		var pTag2 = $("div").find('a').each(function (){
			if($(this).attr('href') == "/dealerlocator/en/us/index.html"){
				var contactDealer = "<a href='http://"+dealersession.dealerDomain+"/ContactUsForm'>";
				contactDealer += "<img rollover=\"/myvw/yourcar/servicestore/en/us/images/cta_contactDealer_on.gif\" src=\"\/myvw/yourcar/servicestore/en/us/images/cta_contactDealer_off.gif\"/>";
				contactDealer += "</a>";
				$(this).replaceWith(contactDealer);
			}
		});
	}
}

$(document).ready( function(){
	$(document).bind("session:dealer", replaceFindADealer);
	try{
		if(dealersession){ //used if not cached
			if(dealersession.isDealerSession == true){
				replaceFindADealer({}, dealersession);
			}
		}
	}catch(e){
	}
});