function show_cat(catid) 
{				
	for (i = 0; i < 14; i++) {
		storiescat_id = document.getElementById('storiescat'+i);
		if (i == 13) {
			storiescat_id.style.cssText = 'padding: 3px 5px 3px 5px; border-left: 1px solid #cccccc; border-right: 1px solid #cccccc; border-top: 1px solid #cccccc; background: #efefef; margin: 0 0 0 5px;';
		}
		else {
			storiescat_id.style.cssText = 'padding: 3px 5px 3px 5px; border-left: 1px solid #cccccc; border-bottom: 0; border-right: 1px solid #cccccc; border-top: 1px solid #cccccc; background: #efefef; margin: 0 0 0 5px;';
		}
		storieslistcat_id = document.getElementById('storieslistcat'+i);
		storieslistcat_id.style.cssText = 'display: none;';
	}
	if (catid < 13) {
		nextcatid = catid + 1;
		storiescat_id = document.getElementById('storiescat'+nextcatid);
		storiescat_id.style.cssText = 'border-top: 0';
	}
	
	storiescat_id = document.getElementById('storiescat'+catid);
	storiescat_id.style.cssText = 'margin: 0 0 0 -5px; border-right: 0; background: white; border-top: 1px solid #cccccc; border-bottom: 1px solid #cccccc; padding: 3px 5px 3px 15px;';
	storieslistcat_id = document.getElementById('storieslistcat'+catid);
	storieslistcat_id.style.cssText = 'display: block;';
	
}