function showcontent(id){
	// close all
	jQuery('.jooblogs_jfrontpage_fulltext_content').slideUp();
	// show clicked
	jQuery('#itemid-'+id).slideDown();
}
function closeContent(id){
	jQuery('#itemid-'+id).slideUp();
}
