$(function() {

    //cufon-hover	
    $(".cufon-hover-div").hover(
      function() {
          $(this).find(".cufon-hover").css("display", "none");
          $(this).find(".cufon-hover-class").css("display", "block");
      },
      function() {
          $(this).find(".cufon-hover-class").css("display", "none");
          $(this).find(".cufon-hover").css("display", "block");
      }
    );
    //einde cufon hover

    //zoek knop
    $("#zoek-formulier input[@name=zoekterm]").hover(
      function() {
          if ($(this).val() == "zoeken") {
              $(this).val("").focus();
          }
          else {
              $("#zoek").focus();
          }
      },
      function() {
          if ($(this).val() == "") {
              $(this).val("zoeken")
          }
          $(this).blur();
      }
    );
    //einde zoekknop

    /* begin footer adressen */
    $("#footer-links-sub div").click(function() {
        $("#footer-links-sub").animate({ marginTop: "-80px", height: "180px" }, "slow");
        $("#footer-links-sub address").slideUp();
        $("#footer-links-sub div").removeClass("actief");
        $(this).addClass("actief").find("address").slideDown();
    });
    /* einde footer adressen */

    if ($.browser.msie && $.browser.version == 6.0) {
        $("a").hover(
		  function() {
		      $(this).addClass("hover");
		  },
		  function() {
		      $(this).removeClass("hover");
		  }
		);
    }

    // knop hover
    $("input[type=submit]").hover(
        function() {
            $(this).css("color", "#008ED7");
        },
	    function() {
	        $(this).css("color", "#483439");
	    }
	);

});