/*
$(document).ready(function()
{
	if ($.browser.msie && parseInt($.browser.version) < 7) {
	}
	else
	{
		$(".pwlitem").hover(function()
		{
			var l = $(this).offset().left - $(this).parent().offset().left;
			var t = $(this).offset().top - $(this).parent().offset().top;
			$(this).prepend('<div class="deleteme" style="left: '+l+'px; top: '+t+'px; background-repeat: no-repeat; background-position: 0px -250px; width: 194px; height: 130px; position: absolute; background-image: url(/inc/img/wsltrans.png);"><a href="'+$(this).find("a").attr("href")+'"><img src="/inc/img/nix.gif" width="100%" height="100%" /></a></div>');
			
			$(this).find(".deleteme").animate(
			{
				backgroundPosition: '0px 150px'
			}, 300, 'swing', function()
			{
				//$(this).remove();
			});
		},
		function()
		{
			$(this).find(".deleteme").remove();
		});
	}
});
*/
