$(document).ready(function()
{
	$('body').browserDetection();
	
	$('#news_list .news_item .news_body').hover(function ()
	{
		$(this).addClass('hover');
	},
	function ()
	{
		$(this).removeClass('hover');
	});
});
