$(document).ready(function() {
    $('.choose_language_link').fancybox({
        'transitionIn': 'elastic',
        'speedIn'			: 600,
        'speedOut'			: 600,
        'width': 560,
        'height': 470,
        'showNavArrows': false,
        'hideOnContentClick': false
    });
    $("#map_link").fancybox({
        'transitionIn': 'elastic',
        'showNavArrows': false,
        'speedIn'			: 1200,
        'speedOut'			: 600,
        'width': 780,
        'height': 465
    });
    $("#video_eric_link").fancybox({
        'transitionIn': 'elastic',
        'showNavArrows': false,
        'speedIn'			: 1200,
        'speedOut'			: 600
    });

  $('.smart')
        .val($('.smart')
        .attr('orig'))
        .focus(function(){
            if ($(this).val() == $(this).attr('orig')) {
                $(this).removeClass('greyed');
                $(this).val('');
            }
        })
        .blur(function(){
            if ($(this).val() == '') {
                $(this).addClass('greyed');
                $(this).val($(this).attr('orig'));
            }
        });
});


document.domain = 'jesus.net';

