$(document).ready(function() {
	$(".obf").each(function() {
		str = $(this).text();
		str = str.replace(/ dot /g,".").replace(/ at /g,"@");
		$(this).html('<a href="mailto:'+str+'">'+str+'</a>')
	})
	$(".section").hide();
	$(".section h3").hide();
	$(".section:first").fadeIn();
	$("#retailNav li a:first").attr("class","selected");
	
	
	$("#retailNav li a").click(function() {
		$("#retailNav li a").attr("class","");
		$(this).attr("class","selected");
		$(".section").hide();
		$($(this).attr("href").toString()).fadeIn();
		return false;
	})
	
});
