/*
	
	Website: 
	BOB Design http://www.bob-design.de/
	Imagion AG http://www.imagion.de/
	Javascript Datei
	20.04.2007 Daan Meskers
	$last_change: 20.04.2007 Daan Meskers
*/
var counter=0; 
var counter_lb = 0, firstLightBoxLink;
window.addEvent('domready', function() {
	$$('DIV.contentblock DIV DIV A IMG').each( function( elm ) { // DIV.news-single-img 
		if ( counter < 1 ) {
			//alert( "> " +  elm.parentNode )
			if ( $('headerIMG') ) {
				$('headerIMG').src = elm.src
				$('headerIMG').parentNode.href = elm.src
			}
		}
		counter++;
	})
	$$('DIV.LightboxBilder A').each( function( elm ) { // DIV.news-single-img 
		if ( counter_lb < 1 && elm.href && 
				elm.href.substring( elm.href.lastIndexOf("/") ) == "/" ) {
			//alert( "elm: " +  $('headerIMG').parentNode )
			$('headerIMG').parentNode.rel = ""
			$('headerIMG').parentNode.href = "javascript:;"
			$('headerIMG').parentNode.style.cursor = "default"
			$('headerIMG').parentNode.title = ""
		}
		if ( counter_lb < 1 && elm.href && 
				elm.href.substring( elm.href.lastIndexOf("/") ) != "/" ) {
			$('headerIMG').parentNode.href = elm.href
		}
		counter_lb++;
	})
	if ( navigator.userAgent.indexOf( "MSIE 7" ) > 0  ) {
	   $$('DIV UL LI UL').each( function( elm ) {
	         //alert( 'msie 7 UL '+ elm + ' childnodes: ' + elm.childNodes.length )
	         if ( elm.childNodes.length < 1 ) {
	         	elm.style.display = "none"
	         }
	   })
	}
	if ( navigator.userAgent.indexOf( "MSIE 7" ) > 0 || navigator.userAgent.indexOf( "MSIE 6" ) > 0  ) {
	   /* $('wrapper').style.overflow = "hidden"
	   $('wrapper').style.height = (document.body.clientHeight - 13 )+ "px"
	   $('Footer').style.bottom= "0" */
	}
	
	if (  typeof initialize == 'function' ) {
		window.onload=initialize;
		window.onunload=GUnload
	}
	
}); 
