var $overlay_wrapper;
var $overlay_panel;

function show_overlay() {
    if ( !$overlay_wrapper ) append_overlay();
    $overlay_wrapper.fadeIn(700);
}

function hide_overlay() {
    $overlay_wrapper.fadeOut(500);
}

function append_overlay() {
    $overlay_wrapper = $('<div id="overlay"></div>').appendTo( $('BODY') );
    $overlay_panel = $('<div id="overlay-panel"></div>').appendTo( $overlay_wrapper );

    $overlay_panel.html( '<div id="header"><img src="images/logo.jpg" width="600" height="150" /></div><h1>Welcome to Lolitas Pattaya website</h1><p style="color:#000; width:550px; margin-left:25px; margin-right:25px;">Before entering the site please note a few points that may be useful.</p><p style="color:#ff0; width:550px; margin-left:25px; margin-right:25px;">"Lolitas Pattaya is independently owned and operated. There is no affiliation with either Lolitas Bangkok or Lolitas Hua Hin." </p><p style="color:#ff0; width:550px; margin-left:25px; margin-right:25px;">This website contains information and pictures regarding Lolitas Gentlemens Lounge in Pattaya. To discuss the real truth about Lolitas please checkout the forums to find our clients first hand experiences of Lolitas and what it has to offer <a href="http://www.pattaya-addicts.com/forum" target="_blank" style="color:#000;">Pattaya Addicts Forum</a></p><p style="color:#ff0; width:550px; margin-left:25px; margin-right:25px;">If you have any questions please feel free to email us or if you are in Pattaya why not just pop in one evening and ask us any questions you have about the bar or about anything about Pattaya. We will be happy to advise you.</p><br/><p style="color:#ff0; width:500px;"><a href="#" class="hide-overlay">Continue to site</a></p>' );

    attach_overlay_events();
}

function attach_overlay_events() {
    $('A.hide-overlay', $overlay_wrapper).click( function(ev) {
        ev.preventDefault();
        hide_overlay();
    });
}

$(function() {
    $('A.show-overlay').click( function(ev) {
        ev.preventDefault();
        show_overlay();
    });
});
