$(document).ready(function() {	$(".sdl").click(function() {				if( $(this).html() == '[Click to hide full description]') {						$("#"+this.id+"_box").css('display','none');			$(this).html('[Click for full description]');				} else {						$("#"+this.id+"_box").css('display','block');			$(this).html('[Click to hide full description]');		}	});});
