/*
 * Based on jQuery JavaScript Library v1.3.2
 *
 * Custom
 * Copyright (c) 2009 aXcessTen Ltd
 *
*/
$(document).ready(function(){
  $('.sp-text-div').hide();
  $('.showMore').bind("click",function() {
     $("."+this.id ).slideToggle('slow');
 });
});
