$(document).ready(function() {
   // Twitter image rollover swap
	 $("#twitter-link img").hover(
		 function()
		 {
			this.src = this.src.replace("-off","-hover");
		 },
		 function()
		 {
			this.src = this.src.replace("-hover","-off");
		 }
		);
 });

