$(document).ready(function(){    
    $(".lihide").hide();
    $("a.seemoreB").hide();	
    $(".seemore> a").click(function () {      
	   var toShow = true;	   
	   if($(this).attr('class').endsWith("B")){
		  toShow = false;
	   }
	   
	   var selectid = $(this).parent(".seemore").attr('id');	   
	   	   
	   if(toShow){
			$("#tbl"+selectid).find(".lihide").fadeIn("fast"); 
			$(this).siblings("a.seemoreB").show();
	   }
	   else{
			$("#tbl"+selectid).find(".lihide").fadeOut("fast"); 	   
			$(this).siblings("a.learnMoreBar").fadeIn("fast");
	   }
	   $(this).hide();	   
	   return false;
	});
    $(".learnMoreBar> a").click(function () {      
	   var toShow = true;	   
	   if($(this).attr('class').endsWith("B")){
		  toShow = false;
	   }
	   
	   var selectid = $(this).parent(".seemore").attr('id');	   
	   	   
	   if(toShow){
			$("#tbl"+selectid).find(".lihide").fadeIn("fast"); 
			$(this).siblings("a.seemoreB").show();
	   }
	   else{
			$("#tbl"+selectid).find(".lihide").fadeOut("fast"); 	   
			$(this).siblings("a.learnMoreBar").fadeIn("fast");
	   }
	   $(this).hide();	   
	   return false;
	});
});
