$(document).ready(function() {
	$('img.hoverimage').hover(
		function() {
			$(this).attr('src', $(this).attr('src').replace('_off', '_on'));
		},
		function() {
			$(this).attr('src', $(this).attr('src').replace('_on', '_off'));
		}
	);
	
	$('a.itemstats').each(
		function() {
			var link = $(this);
			
			$.ajax(
				{
					type:		'GET',
					url:		link.attr('href'),
					dataType:	'xml',
					success:	function(data) {
								link.attr('href', $('link', data).text());
								link.addClass('q' + $('quality', data).attr('id'));
							}
				}
			);
		}
	);
});