$j(document).ready(function(){	
	$j("#storeList li:even").css("clear","left");
	/*$j("#storeList li").each(function(){
		var theIndex = $j("#storeList li").index(this);
		var item = $j(this);
		var theSize = $j("#storeList li").length;
		var address = $j(this).find(".street, .city, .state, .zip").text().replace(/ /g,"+").replace("++","+").replace(/\./g,"");
		$j(this).css("clear","both");
		$j(this).attr("data-address",address);
		var geocoder = new google.maps.Geocoder();
		geocoder.geocode({"address": address}, function(results,status){
			if (status == google.maps.GeocoderStatus.OK) {
				item.html("<span>"+results[0].geometry.location+"</span>");
			} else {
				item.html("<span>Could not compute because of:"+status+"</span>");
			}
		});
	});*/
});
