$(function()
{
    
    $('#text').jScrollPane({showArrows:true, scrollbarWidth: 9, arrowSize: 6});
    
    $('#content h1').each(function(){
        var so = new SWFObject('swf/header.swf', 'mpl', '620', '50', '9');
        so.addParam('wmode', 'transparent'); 
        so.addVariable('title', escape(this.innerHTML));  
        so.write(this);
    });
    
    $('.radio span').click(function(){
        $('span', this.parentNode).removeClass('sel');
        $(this).addClass('sel');
        $('input', this.parentNode).val(this.innerHTML);
    });
    $(".radio span:contains('" + $('#title').val() + "')").click();
    
    $('#viewGame').bind('click', function(){
        var game_window = window.open ("http://www.fresh.bm/live_game.php", "game_window","location=0,status=0,scrollbars=0,width=450,height=550,resizable=0,menubar=0");
         game_window.moveTo(0,0); 
    });
    
});  
