
function setSfsLxShopList(){
	
	if($('storeLocator') && $('subNaviWrapper')){
		
		
		
		var targetLink=$('storeLocator').getElementsByTagName('a');
		
		var i;
		
		for(i=0; i<targetLink.length; i++){
			
			targetLink[i].onclick=function(){
				void(0);
			}
			targetLink[i].setAttribute('href','/');
			targetLink[i].setAttribute('target','_self');
			
		}
	}
}

/*

Event.observe(document,'dom:loaded',setSfsLxShopList,false);

*/