﻿$(document).ready(function()
{

	$(".directory .newssectionbox ul li img.details").each(function()
	{
		$(this).css("display", "none");
	});

	$(".directory .newssectionbox ul li").hover
	(
		function()
		{
			$(this).addClass("doBgImageOnMyLI");
			$(this).find("img.details").css("display","inline-block");
		}
		, function()
		{
			$(this).removeClass("doBgImageOnMyLI");
			$(this).find("img.details").css("display","none");
		}
	);

});

