
function initialiseSectionButtonHover(container)
{	
	if( container )
	{
		// Images
		$( container ).getElements( "img.greyed" ).each( function( el ) 
		{
			el.set(
			{		
				"src": $( el ).get( "src" ).replace( ".gif", "_on.gif" )		
			} );			
			
		});
	}
}

