jQuery(document).ready(function(){
		jQuery("#title").before('<div id="followme">Follow me on Twitter</div>');
		jQuery("#followme").hide();
		jQuery("#title a").hover(function(){
			jQuery(this).attr('href','http://twitter.com/mrkirkland');
			jQuery("#followme").slideDown('fast');
			}
			, 
			function(){
			jQuery("#followme").slideUp();
			});
		});

