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