function ie6fix( ) {
	/**
	 * Menu
	 */
	var items = $$( '#menu>ul>li' );

	items.each( function( item ) {
		var a = item.select( 'a' ).first( );
		var text = a.cleanWhitespace( ).firstChild;
		a.setStyle( { padding: '0 20px', width: ( text.length * 8 ) + 'px', textAlign: 'center' } );
		item.setStyle( { textAlign: 'center' } );
	} );


	/**
	 * Afbeeldingen services op Home
	 */
	var items = $$( '.hbsecond div.image' );

	items.each( function( item ) {
		item.setStyle( { marginLeft: '-50px' } );
	} );
}

document.observe( 'dom:loaded', function( ) {
	if( Prototype.Browser.IE && parseInt(navigator.userAgent.substring(navigator.userAgent.indexOf("MSIE")+5))==6 ) {
		ie6fix( );
	}
} );
