﻿$(document).ready(function() {


//alert(jQuery(this).attr());

    
    //Attach Lightbox
    $('a[@rel*=lightbox]').lightBox();

    $('.AdventureAdvisorEmail').focus(function() {
        if ($(this).val() == 'Enter Email Address')
            $(this).attr('value', '');
    });

    $('.AdventureAdvisorEmail').blur(function() {
        if ($(this).val() == '')
            $(this).attr('value', 'Enter Email Address');
    });    

});    
