$(document).ready(function(){
  $(".cal2").hover(
    function () {
      $(this).attr("class","cal4");
    }, 
    function () {
      $(this).attr("class","cal2");
    }
  );
  $(".cal3").hover(
    function () {
      $(this).attr("class","cal5");
      $("#agen_top").load('http://www.poessie.nl/content.php?action=agen_data&datum='+$(this).attr("date"));
    }, 
    function () {
      $(this).attr("class","cal3");
    }
  );
  $("#bar_cont input").focus(function(){
    if ($(this).val() == 'Zoek in agenda...') {
      $(this).val('');
    }
  });
  $("#bar_cont input").blur(function(){
    if ($(this).val() == '') {
      $(this).val('Zoek in agenda...');
    }
  });
  $(".fototh").hover(
    function () {
      $(this).attr("class","fototh2");
    }, 
    function () {
      $(this).attr("class","fototh");
    }
  );
});
function showcal(maand,jaar) {
  $("#cal_loading").html('<img border="0" src="http://www.poessie.nl/img/loading.gif" height="20" width="20" />');
  $("#calendar").load('http://www.poessie.nl/content.php?action=calendar&maand='+maand+"&jaar="+jaar,function(){
    $(".cal2").hover(
      function () {
        $(this).attr("class","cal4");
      }, 
      function () {
        $(this).attr("class","cal2");
      }
    );
    $(".cal3").hover(
      function () {
        $(this).attr("class","cal5");
        $("#agen_top").load('http://www.poessie.nl/content.php?action=agen_data&datum='+$(this).attr("date"));
      }, 
      function () {
        $(this).attr("class","cal3");
      }
    );
  });
}
