jQuery.noConflict();
jQuery(document).ready(function($){

  $("#navigation li").hover(function() {
    $(this).addClass("hover");
  },function() {
    $(this).removeClass("hover");
  })
  
  $("#signin p.open a").click(function(event) {
    event.preventDefault();
    if ($("#signin form").hasClass("opened")) {
      $("#signin form").animate({ top:'-133' }, 150, function() { $(this).removeClass("opened");});
    } else {
      $("#signin form").animate({ top:'5' }, 300, function() { $(this).addClass("opened");});
    }

  });
  Cufon.replace("#boxes h2",{hover:true})
  ("#boxes p.tar",{hover:true})
  ("h1",{hover:true});
});
