function showNews() {
		$.get(arguments[0],'userZipCode='+arguments[1],function(){
			$("#results_content").hide();
			$("#results_content").html(arguments[0]).fadeIn(400);
			showZebra();
		});
		
};

	
//Styling table
function showZebra(){
	$("#results_content tr").css("background","#fff");
	$("#results_content tr:odd").css("background","#e6e6e6");
	$("#results_content tr:even").css("background","#fff");
	
};
		
$(document).ready(function(){
	// Show News Events
	showZebra();
	$("#showLocalNews").click(function(){var userZipCode = jQuery.url.param("userZipCode");showNews('localNews.php',userZipCode);});
	$("#showNationalNews").click(function(){showNews('nationalNews.php');});
	$("#showEmployerNews").click(function(){showNews('employerNews.php');});
	$("#showTop20").click(function(){showNews('top20.php');});
});