$(document).ready(function() {

//SLIDESHOW//  
        $('#slideshow').cycle({
        fx: 'fade'
        });
//SLIDESHOW//   
//SON IF SUCKERFISH//
  sfHover = function() {
  var sfEls = document.getElementById("nav").getElementsByTagName("LI");
  for (var i=0; i<sfEls.length; i++) {
    sfEls[i].onmouseover=function() {
      this.className+=" sfhover";
    }
    sfEls[i].onmouseout=function() {
      this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
    }
  }
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
//SON IF SUCKERFISH//
    
    
});

$(document).ready(function(){

    //Set opacity on each span to 0%
  $(".rollover").css({'opacity':'0'});

  $('.social-list a').hover(
    function() {
      $(this).find('.rollover').stop().fadeTo(500, 1);
    },
    function() {
      $(this).find('.rollover').stop().fadeTo(500, 0);
    }
  )

}); 


