
$(document).ready(function()
{
  $('.infobulle').hover(
    function()
    {
       $(this).attr('src', "/images/help.gif")
    },
    function()
    {
       $(this).attr('src', "/images/help_light.gif")
    }
  );
    
  $("form.fancybox").live('submit', function()
  {
    $.fancybox(
    {
      type              : "ajax",
      overlayShow       : false,
      href              : $(this).attr('action'),
      ajax:
      {
        type            : "POST",
        data            : $(this).serializeArray()
      }
    });
    $.fancybox.resize();
    return false;
  });
  
  $('a.fancybox').live('click', function()
  {
    var href = $(this).attr('href');
    href = (href.indexOf('?') == -1)? href + '?fancybox' : href + '&fancybox';
    
    $.fancybox(
    {
      titleShow       : false,
      overlayShow     : false,
      href            : href
    });
    return false; 
  });

$('a.fancyboxClose').live('click', function()
  {
    var href = $(this).attr('href');
    href = (href.indexOf('?') == -1)? href + '?fancybox' : href + '&fancybox';
    
    $.fancybox(
    {
      titleShow           : false,
      overlayShow         : false,
      href                : href,
      onComplete          : function () { setTimeout('$.fancybox.close()', 3000); },
      autoDimensions      : true,
      width               : 350,
      height              : 100,
      showCloseButton     : false,
      enableEscapeButton  : true,
      hideOnContentClick  : true
    });
    return false; 
  });

  $("a[rel=group]").fancybox(
  {
    transitionIn    : 'none',
    transitionOut		: 'none',
    titleShow       : false,
    showNavArrows   : true,
    autoDimensions  : true,
    overlayShow     : false,
    href            : $(this).attr('href'),
    enableEscapeButton	: true
  });
});
