
$(document).ready(function(){

	$('.itemlink').click(function(){ return false; });
	
	$('.itemlink').hover(
		
		// on hover
		function(){		
			imagefile = $(this).attr('href');		
			imagefile = imagefile.split('?i=');
			$('#item_viewer').html("<img alt='' src='images/"+imagefile[1]+".gif' />");
			return false;
			
			
			
		},
		// on blur
		function(){}		
	);
	
});