// JavaScript Document


  $(document).ready(function(){
			//highlight bar flyouts					 
			jQuery(function(){
			jQuery('ul.sf-menu').superfish();
							 });
			
			
		//odd and even row colors on tables	
			
		   $('tr:even').addClass('even');
		   $('tr:odd').addClass('odd');	
			
	
	//sidebar navigation
        $("ul.sf-menu2").superfish({ 
            animation: {height:'show'},   // slide-down effect without fade-in 
            delay:     1200               // 1.2 second delay on mouseout 
        
    }); 
		   
		   
								 

		$("a.showme").click(function () {
	// switch all tabs off
			$(".active").removeClass("active");
			
			// switch this tab on
			$(this).addClass("active");
			
			// slide all content up
			$(".highlight").hide("fast");
			
			// slide this content up
			var highlight_show = $(this).attr("title");
			$("#"+highlight_show).show("fast");
			
			
		  

		});
		
		
		
		
		$(".close_it").click(function(){
	
	  $(this).parents(".highlight").hide();

	});
		
		
		
			
	
	  });
  
  
  
  
  
