/**************************************************************************************************
* Goldfish Old Browser Warning (works only with jQuery)
* This javascript is created by Goldfish from Fishbeam Software: http://www.fishbeam.com
* All rights reserved. © 2009 Yves Pellot
**************************************************************************************************/

$(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"
}
