var $j = jQuery.noConflict();

$j(document).ready(function() {
  $j("#header").click(function() {
    document.location="http://www.les-jardins-de-sanne.com/blog/";
  });
  $j("#header").mouseover(function() {
    $j(this).css("cursor", "pointer");
  })
  $j("#header").mouseout(function() {
    $j(this).css("cursor", "auto");
  })
});