/* ================================================================
<div class="hidden">
text that you want to hide here
</div>
<i class="show"></i>

<script src="js/jquery-1.3.2.min.js" type="text/javascript"></script>

=================================================================== */



/* ================================================================ 

This copyright notice must be untouched at all times.

Copyright (c) 2009 Stu Nicholls - stunicholls.com - all rights reserved.

=================================================================== */

$(document).ready(function()
{

  $(".hidden").hide();  
  $(".show").html("more ....");
  
  $(".show").click(function()
  {
  
    if (this.className.indexOf('clicked') != -1 )
    {  
  		$(this).prev().slideUp(500);  
  		$(this).removeClass('clicked');  
  		$(this).html("more ....");  
    }  
    else
    {  
  	  $(this).addClass('clicked');  
  		$(this).prev().slideDown(500);  
  		$(this).html("... less");  
    }
  
  });
  
});
