$(document).ready(function(){  

	/*	Makes the listed site's name just that little bit paler when the mouse is hovered over it, to 'highlight' it	*/
	/*	(it also gets underlined as it is a link)	*/
	$(".listedsite").hover(function() {
		$(this).animate({ 
			opacity:"0.8"
		}, 0 );
	},function(){
		$(this).animate({ 
			opacity:"1"
		}, 0 );
	});
	
	/*	Makes the listed sites rotate stop when the mouse is hovered over it	*/
	/*$(".listedsite").hover(function() {
		clearTimeout(lTimer);
	},function(){
		startTimer2();
	});*/
});  



