// JavaScript Document
$(document).ready(function() {
   // put all your jQuery goodness in here.
   $('#content-main').mousemove(function(event) {
  $('.go-there').fadeIn("slow");
  });
   
 });



