window.onload = function()
{
	var anchors = document.getElementsByTagName( 'a' );
	
	for ( i=0; i<anchors.length; i++ )
	{
		anchors[i].setAttribute( 'onClick', 'fadePanel( this )' );
	}

	$( '.hide' ).hide();
}

function fadePanel( this_element )
{
	var div_panels = document.getElementById( 'panels' );

	var panels = div_panels.getElementsByTagName( 'div' );

	$( panels ).hide();

	$( '#'+this_element.rel ).fadeIn( 'slow' );
}

