Event.observe(window, 'load', function() {
	if ( navigator.userAgent.indexOf('MSIE 6') > -1) fixIt();
});

function fixIt()
{

	var h = $$('li.primo_piano div.xresource div.primo_piano a img');
	if (h != null && h.length > 0)
		h[0].style.width = '309px';

	var b = $$('#liquid_content div.xmanager_content #ul_content_0_0 li.primo_piano div.xresource');
	if (b != null && b.length > 0)
	{
		b[0].style.width = '619px';
	        b[0].style.backgroundColor = '#FFFFFF';
        	b[0].style.marginLeft = '8px';
        	b[0].style.overflow = 'auto';
	}

	var t = $$('#liquid_content .xmanager_content ul li.primo_piano div.titolo');
	if (t != null && t.length > 0)
	{
        	t[0].style.marginLeft = '325px';
        	t[0].style.marginTop = '18px';
        	t[0].style.width = '280px';
	}

	var p = $('xmanager_col_dx_0_0');
	if (p != null) 
	{
		var c = p.getElementsBySelector('[value="parametric_filtered_list"]');
		if (c != null)
			for (var i = 0; i < c.length; i++)
				if (c[i].innerHTML == '') c[i].style.display='none';
	}

        var x = $$('div.xmodule');
        for (var i = 0; i < x.length; i++)
                if (x[i].childElements().length == 0) x[i].remove();

	var d = $('ul_col_dx_0_0');
	if (d != null)
	{
		var l = d.getElementsBySelector('li.dynamic_menu_item');
		if (l != null)
			for (var i = 0; i < l.length; i++)
				if (l[i].childElements().length == 0) l[i].remove();
	}

	var f = $$('form.editoriali_box_archivio')[0];
	if (f != null)
	{
		var g = f.getElementsBySelector('select[name="resource_and_field"]')[0]
		if (g != null) g.style.width='275px';
	}

}
