$('document').ready(function(){
		$('.steamnews').mouseenter(function(){
			$(this).children('div').show();
		});
		$('.steamnews').mouseleave(function(){
			$(this).children('div').hide();
		});
});
