function bindEffects(){
   $("span.trigger a").click(function () {
     
	  if ($("#textSynopsis").is(":hidden")) 
      {
	  	 if(document.getElementById("pfolioList") || document.getElementById("capabilitiesList")) {
			fixed_height = 300; // portfoilio type page
		 } else {
			fixed_height = 440; // full page
		 }
		 check_height = document.getElementById('innerTHeader').offsetHeight; 
		 bottom_height = (fixed_height - check_height);
		 	 
	  	 $('#textSynopsis').css('height',bottom_height);
         $(this).text("Read Less <");
         $(this).addClass("type1");
         $("#textSynopsis").slideDown("slow");		 
      } 
      else 
      {
         $(this).text("Read More >");
         $(this).removeClass("type1");
         $("#textSynopsis").slideUp();
      }
   });
}
    
    
$(document).ready(function() {
   bindEffects();
});