function showSubDiv(sub_id)
{
	$('div.myBoxlight.subdiv').hide();
	var targetdiv = document.getElementById(sub_id);
	//$(targetdiv).fadeIn('slow');
	$(targetdiv).show();
	
}
