$(document).ready(function()
{
	
	if ($.browser.msie) 
	{
		$('td.info').before('<td class="border-spacing-fix" rowspan="5"></td>');
		$('tr:first-child').addClass('first-child');
	};
	
	$('table a').each(function(index) 
	{
		var link = $(this).attr('href');
		var mum = $(this).parent().parent();
		$(mum).hover(function()
		{
			$(this).addClass('hover').click(function()
			{
				location.href = link;
				return false;
			});
		},
		function()
		{
			$(this).removeClass('hover');
		});
		
	
		
		// $('.inaktiv').click(function()
		// {
		// 	return false;
		// });
	});
})