I have this basic example working:
http://www.mharrisweb.co.uk/tester.htm
Is there anyway I can get the fading text to scroll slightly, to create a more fluid tr
use this
var divs = $('.social, .title'); $(window).scroll(function(){ if($(window).scrollTop()<10){ divs.stop(true,true).fadeIn("fast"); } else { divs.stop(true,true).fadeOut("fast"); } });