$(document).ready(function(){

    flowplayer("a.myPlayer", "http://releases.flowplayer.org/swf/flowplayer-3.2.2.swf", {
        clip: {
            // these two configuration variables does the trick
            autoPlay: true,
            autoBuffering: true // <- do not place a comma here
        },
        plugins: {
            controls: null
        }
    });


    $('a').click(function(){
        $(window).unbind('beforeunload');
    });

    $('iframe#viraltool').load(function() {
        $('a', this.contentDocument).live('click', function(){
            $(window).unbind('beforeunload');
        });
        
    });

    $('iframe#viraltool2').load(function() {
        $('a', this.contentDocument).live('click', function(){
            $(window).unbind('beforeunload');
        });

    });

});


