$(document).ready(function(){

  $("div#faq").removeClass("hide");  
  $("div#faq").hide();
  
  $('.open').click(function() {
		$('div#faq').fadeIn("fast");
	  });
    
  $('.close').click(function() {
		$('div#faq').fadeOut("fast");
	  });
  
  $('.open').click(function() {
		return false;
	  });
    
  $('.close').click(function() {
		return false;
	  });
  
  $(".link").hover(function() { 
  $(this).addClass("hover")}, 

  function() { 
  $(this).removeClass("hover") } )
  
  $("div#select1").hover(function() { 
  $(this).find("#cat").addClass("hover1")}, 
  
  function() { 
  $("div#select1").find("#cat").removeClass("hover1") } )
  
  $("div#select2").hover(function() { 
  $(this).find("#cat").addClass("hover2")}, 
  
  function() { 
  $("div#select2").find("#cat").removeClass("hover2") } )
  
  $("div#select3").hover(function() { 
  $(this).find("#cat").addClass("hover3")}, 
  
  function() { 
  $("div#select3").find("#cat").removeClass("hover3") } )
  
  $("div#select4").hover(function() { 
  $(this).find("#cat").addClass("hover4")}, 
  
  function() { 
  $("div#select4").find("#cat").removeClass("hover4") } )
  
  $("div#select5").hover(function() { 
  $(this).find("#cat").addClass("hover5")}, 
  
  function() { 
  $("div#select5").find("#cat").removeClass("hover5") } )
  
  $("div#select6").hover(function() { 
  $(this).find("#cat").addClass("hover6")}, 
  
  function() { 
  $("div#select6").find("#cat").removeClass("hover6") } )
  
  $('div#help_a').hover(function() {
    $('div#tooltip_a').addClass("hover");
      },function(){
        $("div#tooltip_a").removeClass("hover");
      });

  $('div#help_b').hover(function() {
    $('div#tooltip_b').addClass("hover");
      },function(){
        $("div#tooltip_b").removeClass("hover");
      });
      
  $('div#help_c').hover(function() {
    $('div#tooltip_c').addClass("hover");
      },function(){
        $("div#tooltip_c").removeClass("hover");
      });

});