jQuery.noConflict();

jQuery(document).ready(function(){
  //alert('I am loaded and ready.')
  jQuery('img.home').hide().animate({'opacity':1}, 1000).fadeIn(2400);
  
  // jQuery('dl#lineup dd').hide();
  // jQuery('dl#lineup dt').click(function(){
  //    alert('ehy there');
  // });  
  
  // jQuery('#music a').click(function(){
  //   alert('hey'); 
  //   return false;
  // }); 
  
  jQuery("#sound a").hide();  
  var path = jQuery("#sound a").attr('href');              
  // $music = jQuery('#music a');      
  jQuery("#music").css({'opacity':'0.7'})
    .flashembed({src: '/flash/singlemp3player.swf', height: 20, width: 50, wmode: 'transparent' }, {file: path})
    .click(function(){
      jQuery(this).css({'opacity':'1'});
    });  

  $scroller = jQuery('#scroller'); 
  if($scroller.length > 0){
    $scroller
      .jScrollPane({
        scrollbarWidth: 6,
        scrollbarMargin: 20
      }); 
  } 

});