$(document).ready(function(){
  $("dd").addClass("inactive");
  $("dt").mouseover(function(){
    $(this).addClass("hover");
  });
  $("dt").mouseleave(function(){
    $(this).removeClass("hover");
  });
  $("dt").click(function () {
    $(this).toggleClass("active");
    $(this).next("dd").slideToggle("slow");
  });    
  $("a#contact").fancybox(); 

    // All links to contact should use a fancybox with an iframe
    $('a[href=/contact/]').each(function () {
        $(this).attr('href', $(this).attr('href') + '?iframe');
        $(this).fancybox({
            'hideOnContentClick': false,
            'frameWidth': 450,
            'frameHeight': 500
        });
    });
});
