$(document).ready(function()
{
	$("#no-more-ie6").show();
	
	$("#ie6-close").click(function()
	{
		$("#no-more-ie6").hide();
		$.cookie('ie6', 'hidden', {path: "/"});
	});
	
	var ie6cookie = $.cookie('ie6');
	
	if (ie6cookie == 'hidden') {
		$("#no-more-ie6").hide();
	};

});