window.onload = function ()
{
	if (window.ie6)
	{    
        $$('ul.stufe_eins li.opened, ul.stufe_eins li.selected').each (function (atag) 
		{
			var child = atag.getElement('.stufe_zwei');
			atag.addEvent ("mouseover", function() {child.setStyle ("display", 'block');});
			atag.addEvent ("mouseout", function() {child.setStyle ("display", 'none');});
	
		});
	}
	
	houseImagePop = function ()
	{
		$$('#tableFrame a').each (function (el)
		{ 
			el.addEvent ('click', function (e)
			{
				e = new Event(e).stop();	
				href = el.getProperty ('href');
				window.open(href, '', 'scrollbars=no,resizable=no,menubar=no,width=740,height=500');		
			});
		});
	} 
	houseImagePop ();	
}
