
$(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(){}		
	);
	
	
	$('.track_pdf_views_download').click(function() { 
		
		var theUrl = $(this).attr('href');
	
		pageTracker._trackPageview('/communication_tools/' + theUrl);
		//console.log('/communication_tools/' + theUrl);
		return true;
		
		
	});
});
