

	document.observe("dom:loaded", function( event ) {
		if( Prototype.Browser.IE6 )
		{
			$$('[cols]').each( function( element ) {
				element.addClassName('cols' + element.readAttribute('cols'));
				element.childElements().invoke('addClassName','colsChild');
			});
			
			$(document.body).insert({top: new Element('div', {
					style:'position:absolute;top:0px;left:0px;height:17px;padding:3px;font-family: Arial, Helvetica, Geneva, sans-serif; font-size:11px; background-color:#FFFFE1; color:black; border-top: 1px solid #FFFFE1; border-bottom: 1px solid #cccccc;width:100%;'
				}).update(
					"<div style='margin:0px 15px;'>Du använder en gammal version av Internet Explorer, <a style='text-decoration: underline; color: black; font-weight:bold;' rel='nofollow' target='_blank' href='http://www.microsoft.com/windows/downloads/ie/getitnow.mspx'>klicka här</a> för att ladda ner den senaste versionen! Eller använd <a style='text-decoration: underline; color: black; font-weight:bold;' rel='nofollow' target='_blank' href='http://getfirefox.com'>Firefox</a> eller <a style='text-decoration: underline; color: black; font-weight:bold;' rel='nofollow' target='_blank' href='http://www.opera.com/download/'>Opera</a>.</div>"
				)}).setStyle({marginTop:'25px'});
		}
		
		

/*		
		$$('[cols]').each( function( element ) {
			var cols = element.readAttribute('cols');
			$$('#'+element.identify()+' > .col').each( function( el, index ) {
				if( index % cols )
				{
					el.down().addClassName('separator');
				}
			});
		});
		*/
		
	});