    $(function() {
        $('.close').click(function(e) {
            e.preventDefault();
            var destination = this.href;
            $('body').fadeOut(200, function() {
                window.location = destination;
            });
        });
        return false;
    });

    setTimeout(
        function() 
        {   
            $('.maincontent').removeClass('hidden');
        }, 300);
    
    
    
    $(document).ready(function () {
        
        setTimeout(
            function() 
            {   
                $('div.hidden').fadeIn(400).removeClass('hidden');
            }, 300);
        
    });






