$(document).ready(function(){
	window.location.hash!="" ? currentItem = window.location.hash.toLowerCase() : currentItem = "#werbng";
	$(currentItem).size()==0 ? currentItem = "#werbng" : "";
	
	$(".quote").hide();
	$(currentItem).show();
	$("#switch a."+currentItem.replace("#","")).addClass("selected");
	
	$("#switch a").click(function(){
		clickedLink = $(this).attr("href");
		$("#switch a.selected").removeClass("selected");
		$(this).addClass("selected");
		if ($(clickedLink+":visible").size()==0) {
			$(".quote:visible").fadeOut(100, function(){
				$(clickedLink).fadeIn(150);
			});	
		}
	});
});