$(document).ready(function(){
  Cufon.set('fontFamily', 'Helvetica Neue TH Std').replace('#content h1');
  // Cufon.set('fontFamily', 'Helvetica Neue Roman Std').replace('h2,h3');

  $('a[href^=http]').click(function(){
    window.open( $(this).attr('href') );
    return false;
  });

  var $form = $("#register")
  if($form.length > 0){
    $("#register").validate({
      //set the rules for the fild names
      rules: {    
        "member[password]": {
          required: true,
          minlength: 2  
        }, 
        "member[email]": {
          required: true,
          email: true
        }
      },
      //set messages to appear inline
      messages: {   
        "member[password]": " Bitte geben Sie ein neues Passwort ein.",
        "member[email]": "Bitte eine gültige E-mail Adresse eingeben."   
      }
    });
  };

  // Assigns all links with rel="lightbox" to the lightbox function
  $(function() {
    $('a[rel=lightbox]').lightBox();
  });

});
