$(document).ready(function() {
$("a").next(".tsImgPara").hide().next("a").hide();
});
function showhide(id){
if($("#" + id).next(".tsImgPara:visible").next("a:visible").length > 0) {
$("#" + id).next(".tsImgPara").hide().next("a").hide();
$("#" + id).removeClass("selected");
}
else {
$("#" + id).next(".tsImgPara").show().next("a").show();
$("#" + id).addClass("selected");
}
}