// Read a page's GET URL variables and return them as an associative array.
function getUrlVars() {
  var vars = [], hash;
  var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
  for(var i = 0; i < hashes.length; i++) {
    hash = hashes[i].split('=');
    vars.push(hash[0]);
    vars[hash[0]] = hash[1];
  }
  return vars;
}



jQuery(document).ready(function(){
  catopen = 0;
  jQuery('#tabs li a').siblings().hide();
  jQuery('#tabs li a').hover(function() {
    jQuery(this).siblings().fadeIn(150);
      }, function() {
        });
        jQuery('#tabs li a').mouseleave(function() {
        jQuery(this).siblings().fadeOut(150);
      }, function() {
    });
    jQuery('.cat-item-17 a:first').click(function() {
      if(catopen==0){
        catopen=1;
        jQuery('.cat-item-17 .children').slideUp("slow");
        //alert('clicked');
        return false; 
      } else {
        catopen=0;
        jQuery('.cat-item-17 .children').slideDown("slow");
        return false;
      }
    }, function() {
  });
});



