// JavaScript Document

function show(id) {
	jQuery("#143").css( "display", "none" );
	jQuery("#144").css( "display", "none" );
	jQuery("#145").css( "display", "none" );
	jQuery("#"+id).css( "display", "block" );
	jQuery("#sm143").css( "opacity", "0.5" );
	jQuery("#sm144").css( "opacity", "0.5" );
	jQuery("#sm145").css( "opacity", "0.5" );
	jQuery("#sm"+id).css( "opacity", "1" );
}

