﻿//add class .showLightBox to trigger-element.
$(function() {
    
    $('.showLightBox').click(function() {
        
        $('#fade').show();
        $('.golfLightBox').fadeIn('slow');
        return false;
    });
    
    $('.lightbox_close').click(function() {
    $('.golfLightBox').fadeOut('slow');
        $('#fade').hide();
        return false;
    });
})

function ShowLightBox(argMessage) {
    $('#lightBoxContent').html(argMessage);
    $('#fade').show();
    $('.golfLightBox').fadeIn('slow');

}

function ShowLightBoxAjaxFetch(argURI, argContainer) {
    $('#fade').show();
    $('.golfLightBox').fadeIn('slow');
    $('#lightBoxContent').load('' + argURI + ' ' + argContainer + '');
    $('#fade').show();
    $('.golfLightBox').fadeIn('slow');
    return false;

}
