// JavaScript Document - YellowSnow

jQuery(document).ready(function(){
	
	jQuery('.description').hide();
	
	jQuery('.showhide').toggle(function () {
		
		jQuery(this).find('span').text('» hide');
		jQuery(this).parent().next('.description').slideToggle('slow');
		
  	},function () {
		
    	jQuery(this).find('span').text('» show');		
		jQuery(this).parent().next('.description').slideToggle('slow');
		
		
	});
	
		
});
