var cssObj3 = {
   "height":"62px",
   "background-color":"#000",
   "opacity":" 0.5",
   "filter":"alpha(opacity=50)",
   "-moz-opacity":"0.5",
   "-khtml-opacity":"0.5",
   "width":"431px",
   "padding":"0px 5px 0px 15px",
   "position":"absolute",
   "z-index":"9"
}

function onTransparent() {
   if ($.browser.msie) {
      $('.headlineOverlay').css(cssObj3);
   }
}


$(document).ready(function() {

   $("#containerSong > ul").tabs();
   
   $(function(){ $('.autoIndex').equalHeights(); });
   
   $('#playSlide').hide();
   
   if(document.getElementById('slideShowIndex')){
         $('#slideShowIndex').cycle({ 
            fx:      'fade', 
            speedIn:  200, 
            speedOut: 50, 
            delay:   -2000,
            timeout: 3000,
            before:onTransparent,
            pause:1,
            pagerEvent: 'mouseover',
            pauseOnPagerHover: true,
            forcePause:true,
            pager:  '#pagerIndex'
      
      });
   }
   

   $('a#stopSlide').click(function() {
      $('#slideShowIndex').cycle('pause');
      $('#playSlide').show();
      $('#stopSlide').hide();
   });
   
   $('a#playSlide').click(function() {
      $('#slideShowIndex').cycle('resume');
      $('#playSlide').hide();
      $('#stopSlide').show();
   });
   
   $('a#nextIndex').click(function() {
      $('#slideShowIndex').cycle('nextCycle');
      $('#playSlide').show();
      $('#stopSlide').hide();
   });
   
   $('a#prevIndex').click(function() {
      $('#slideShowIndex').cycle('prevCycle');
      $('#playSlide').show();
      $('#stopSlide').hide();
   });
   
   
});

