//function checkBoxes(){
//	if($('#keywordBox').val() == 'Job Title, Company, Keywords'){$('#keywordBox').val('');}
//	if($('#locationBox').val() == 'City, State, or Zip Code'){$('#locationBox').val('');}
//}
//for Admin section reports top
	  // When the document loads do everything inside here ...
	  $(document).ready(function(){
		$("#content_4").hide();
		// When a link is clicked
		$("a.tab").click(function () {
			
			
			// switch all tabs off
			$(".active").removeClass("active");
			
			// switch this tab on
			$(this).addClass("active");
			
			// slide all elements with the class 'content' up
			$(".content").slideUp();
			
			// Now figure out what the 'title' attribute value is and find the element with that id.  Then slide that down.
			var content_show = $(this).attr("title");
			$("#"+content_show).slideDown();
		  
		});
	
	  });