﻿
var IEWarn = new Class({
'site': 'sitename',
'initialize': function() {
var warning = "<h3>IE6 DETECTED: Currently Running in Compatibility Mode</h3><h4>This site is compatible with IE6, however your experience will be enhanced with a newer browser</h4><p>Internet Explorer 6 was released in August of 2001, and the latest version of IE6 was released in August of 2004.  By continuing to run Internet Explorer 6 you are open to any and all security vulnerabilities discovered since that date.  In March of 2009, Microsoft released version 8 of Internet Explorer that, in addition to providing greater security, is faster and more standards compliant than both version 6 and 7 that came before it.</p> <br /><a class='external'  href='http://www.microsoft.com/windows/internet-explorer/?ocid=ie8_s_cfa09975-7416-49a5-9e3a-c7a290a656e2'>Download Internet Explorer 8 NOW!</a>";

this.box = new Element('div', {'id': 'iewarn'}).inject(document.body, 'top');
var div = new Element('div').inject(this.box).setHTML(warning);

var click = this.toggle.bind(this);
var button = new Element('a', {'id': 'iewarn_close'}).addEvents({
'mouseover': function() {
this.addClass('cHover');
},
'mouseout': function() {
this.removeClass('cHover');
},
'click': function() {
click();
}
}).inject(div, 'top');

this.height = $('iewarn').getSize().size.y;

this.fx = new Fx.Styles(this.box, {duration: 1000}).set({'margin-top': $('iewarn').getStyle('margin-top').toInt()});
this.open = false;

var cookie = Cookie.get('IEWarn'), height = this.height;
//cookie = 'open'; // added for debug to not use the cookie value
if (!cookie || cookie == "open") this.show();
else this.fx.set({'margin-top': -height});


return ;
},

'show': function() {
this.fx.start({
'margin-top': 0
});
this.open = true;
Cookie.set('IEWarn', 'open', {duration: 7});
},
'close': function() {
var margin = this.height;
this.fx.start({
'margin-top': -margin
});
this.open = false;
Cookie.set('IEWarn', 'close', {duration: 7});
},
'status': function() {
return this.open;
},
'toggle': function() {
if (this.open) this.close();
else this.show();
}
});

window.addEvent('domready', function() {
if (window.ie6) { (function() {var iewarn = new IEWarn();}).delay(2000); }
});
