


/*********SCOREBOARD SEE widgest/Scoreboard.in for code************/


  function dailyBackground(node,images)
      {
      
        randno = Math.floor ( Math.random() * images.length );  
        node.style.backgroundImage = "url(\""+images[randno]+"\")";
      
      }

/*Highlight 3 is on the page itself widgets/TabsDL.inc*/
    
    
/*START ROTATOR*/
jQuery(document).ready(function()  {  

jQuery('#Tab_1').click(function() {
highlight1(); 
jQuery('#Content_1').css({'display' : 'block'});       
jQuery('#Content_2').css({'display' : 'none'});              
});


jQuery('#Tab_2').click(function() {
highlight2(); 
jQuery('#Content_2').css({'display' : 'block'});    
jQuery('#Content_1').css({'display' : 'none'});
});   


if(jQuery("#StayConnected").length>0) {  
jQuery('#StayConnected').show();
}

if(jQuery("#RotatorBox").length>0) {    
jQuery('#scroller').show();
jQuery('#scrollerThumbs').show();
jQuery('#scroller').cycle({
    fx:     'fade', 
    speed:  'slow', 
    timeout: 5000, 
    prev:    '#RotatorArea .Rotback',
    next:    '#RotatorArea .Rotforward',     
     pager:  '#scrollerThumbs',
    pagerAnchorBuilder: function(idx, slide) { 
    // return selector string for existing anchor 
    return '#scrollerThumbs li:eq(' + idx + ') a'; 
    }                     
});   
}
    
jQuery('#RotatorArea .Rotpause').click(function() { 
  jQuery('#scroller').cycle("pause");
});  
  
  
    

    
});
jQuery(document).ready(function()  {  
jQuery('.FeaturedPlayerArea').cycle({
    fx:     'fade', 
    speed:  'slow', 
    timeout: 5000                 
});
});


/*END ROTATOR*/



