function title( str ) {
	//str = str.substr( 0, 1 )+""+str.substr( 1 ).toLowerCase();
	//if( str.indexOf( "led" ) > 0 ) str = str.substr( 0, str.indexOf( "led" ) )+"LED"+str.substr( str.indexOf( "led" ) + "led".length );
	//if( str.indexOf( "medolight" ) > 0 ) str = str.substr( 0, str.indexOf( "medolight" ) )+"Medolight"+str.substr( str.indexOf( "medolight" ) + "medolight".length );
	//if( str.indexOf( "blue" ) > 0 ) str = str.substr( 0, str.indexOf( "blue" ) )+"Blue"+str.substr( str.indexOf( "blue" ) + "blue".length );
	document.write( str );
}

