/**************************************************************************************************
Created by Dave Vriens http://www.davevriens.nl
**************************************************************************************************/

$(document).ready(function(){
	if(jQuery.browser.msie && jQuery.browser.version<7) {
		if(!document.cookie || document.cookie.indexOf("oldIeWarningClosed=true;path=/")==-1) {
			$("#oldIe").show("slide", { direction: "up" }, 1000);
			$("#oldIeClose").click(closeWarning);
		}
	}
});

function closeWarning() {
	$("#oldIe").hide("slide", { direction: "up" }, 1000);
	document.cookie="oldIeWarningClosed=true"
}
