/* Author: http://www.wapenfeit.nl */

Cufon.replace('h1');

if($('a.fancybox').length) {
    $('a.fancybox').fancybox({
        'titlePosition'	:	'over',
        'onComplete'	:	function() {
            $("#fancybox-wrap").hover(function() {
                $("#fancybox-title").show();
            }, function() {
                $("#fancybox-title").hide();
            });
        }
    });
}

if($('a.fancybox-inline').length) {
    $('a.fancybox-inline').fancybox({
        'type':	'inline'
    });
}

if($('#contact-form').length) {
  $("#contact-form").validate({
    errorPlacement: function(error, element) {
        // element.siblings('label:first').after( error );
        element.before( error );
      }
   });
}
