$(document).ready(function()
{
	// remove borders from linked images
	$('.content a > img').parent().addClass('linkedImage');

	// fixing the navigation selected state for IE6
	if ($.browser.msie && $.browser.version.substr(0, 1) < 7)
	{
		$('#navigation ul li').each(function(i)
		{
			if($(this).hasClass('firstChild') && $(this).hasClass('selected'))
			{
				$(this).removeClass('firstChild').addClass('selectedFirstChild');
			}
		});
	}

	// fix border right and the width for the last product in the list
	$('#home #products ul li').eq(3).css('border-right', 'none').css('width', '240px');
});

