function popup(url, id, width, height)
{
   newwindow = window.open(url,id,'toolbar=no,scrollbars=yes,location=no,statusbar=no,menubar=no,resizable=yes,width=' + width + ',height=' + height);
   newwindow.focus();
}


$kuj(document).ready(function(){

	$kuj(".navbutton").hover(
	  function (navhover) {
        $kuj(this).css({ color: "#FFDD33" });
      }, 
      function (endnavhover) {
        $kuj(this).css({ color: "#FFFFFF" });
      }
	);

});

