// JavaScript Document

$(document).ready(function(){





$("a.navbut,a.show").hover(
  function () {$("a.navbut,a.show").removeClass("navbuthover");},
  function () {}
);



$("a.navbut,a.show").hover(
  function () {$(this).addClass("navbuthover");},
  function () {}
);

$("a.navbut").hover(
  function () {$("div.subnav").css({visibility:"hidden"});},
  function () {}
);

$("a.navbut").hover(
  function () {$("a.show").removeClass("selector");},
  function () {}
);




$("a.show").hover(
  function () {
    $("div.subnav").css({visibility:"visible"});
  },
  function () {
    
  }
);



$("div.transmenu a").hover(
  function () {
    $(this).addClass("buthover");
  },
  function () {
    $(this).removeClass("buthover");
  }
);




});


