$(document).ready(function(){
	
	//fade thumb images
	
	$('.gamethumb IMG').fadeTo("fast", 1);
	
	$('.gamethumb IMG').hover(function() {
		$(this).fadeTo("fast", 0.8);
	}, function() {
		$(this).fadeTo("fast", 1);
	});
	
	
	//tooltips
	$('.tooltip').Tooltip({ 
		track: true, 
		delay: 10, 
		showURL: false, 
		showBody: "", 
		left: -120 
	});
	

}); //close doc ready