

$(document).ready(function(){
    $('.f_overlayTrigger').click(function (event) {
        $('#f_overlay').show('slow');
        event.preventDefault();
    });
    $('.f_overlayCloser').click(function (event) {
        $('#f_overlay').hide('slow');
    });
});



