//OLD BROWSER NOTICE
$(document).ready(function(){
	if($.browser.msie == true && $.browser.version < 8){
		var html = "";
		html += "<div id='old-browser-notice'>";
		html += "<p>Does this page look right? If not, chances are you are using an old browser. We highly recommend you <a href='http://www.ascensor.co.uk/upgradebrowser.php' target='_blank'>upgrade</a> to one of these newer browsers:</p><p><a href='http://www.mozilla-europe.org/en/firefox/' target='_blank'><img src='assets/images/Firefox_32.png' align='Mozilla Firefox' /></a><a href='http://www.google.com/chrome/' target='_blank'><img src='assets/images/Google-Chrome-32.png' align='Google Chrome' /></a><a href='http://www.apple.com/safari/download/' target='_blank'><img src='assets/images/Safari-32.png' align='Safari' /></a><a href='http://www.microsoft.com/windows/Internet-explorer/default.aspx' target='_blank'><img src='assets/images/internet_explorer_32.png' align='Internet Explorer 8.0' /></a></p><p><a href='javascript:void(0)' id='hide'>Click here to hide this box, or click on the icons above to upgrade to the browser of your choice.<br /> (Hiding this box is a confirmation that you understand this site may not look or function correctly in your current browser.)</a>"; 
		html += "</div>";
	 
		$("body").prepend(html);
		$("#old-browser-notice").hide().slideDown(200);
		
		$("#old-browser-notice").css("opacity","0.8");
		
		$("#old-browser-notice a#hide").click(function(){
			$("#old-browser-notice").slideUp(200);
		})
	}

});

