$(document).ready(function(){	//	Promo Tabs		$("#posts_nav a").click(function(event) {			$("div.promo_section").hide();			$("ul#posts_nav li a").removeClass('selected');			$(this).addClass('selected');			$("div#" + $(this).attr("href")).show();			return false;		});});
