$(document).ready(function(){
	$(".tabArticle:not(:first)").hide();
	$("#obamaTabLinks a.tabLinks").click(function(){
		theID = '#' + $(this).attr('href');
		$(".tabArticle:not(theID)").slideUp(500);
			$(theID).slideDown(500);
		
		return false;
	})
})

