ImageHeader = 
{
	init : function()
	{
		$("#imageHeader #other")
			.css("opacity", 0.5)
			.hover(
					function(){
								$(this).fadeTo("fast",1.0);
								}
					,
					function()
							{
								$(this).fadeTo("fast",0.5);
							}
					)
			.show();
	}
}