Ray Conniff - As Time Goes By lyrics
rate meYou must remember thisA kiss is still a kissA sigh is just a sighThe fundamental things applyAs time goes byAnd when two lovers wooThey still say I love youOn that you can relyNo matter what the future bringsAs time goes byMoonlight and love songsNever out of dateHearts full of passionJealousy and hateWoman needs manAnd man must have his mateThat no one can denyIts still the same old storyA fight for love and gloryA case of do or dieThe world will always welcome loversAs time goes by
$(document).ready(function() {
// put all your jQuery goodness in here.
// $("#myshare").hide();
$("#lyrics").mousemove(function(e){
$("#myshare").css({visibility:'visible'});
$("#myshare").css({left:$("#right_content").position().left-60,top:e.pageY-10});
$("#myshare").show();
// alert('r');
});
$("#lyrics").mouseout(function(e){
$("#myshare").hide();
// alert('d');
});
});