if (navigator.mimeTypes ["application/x-shockwave-flash"] != undefined) {
        if ($.cookie('book') != "opened")
        {
                $('#ribbon').hide();
                $('footer').hide();
                $('#container').hide();
                $('#flash-book').show();

                $(document).ready(function(){
                         $('#flash-book').flash({
                            src: basePath + '/img/flash.swf',
                            width: 1050,
                            height: 760,
                            wmode: 'transparent'
                        });
                });		

                $.cookie('book', 'opened', { expires: 1 });	
        }	
        else {
                $('#animation-starter').show(); 

                $('#animation-starter').click(function() {
                    $.cookie('book', null);
                    location.reload();	
                 });		
        }		
}

function done(s) {
        $('#blank-book').show();
        $('#container').show();
        $('#flash-book').hide();
        $("#blank-book").fadeOut('slow');
        $("footer").fadeIn('slow');
        $('#ribbon').fadeIn('slow');
}
