$(document).ready(function() {
			$('[class^=toggle-item]').hide();
			$('[class^=link]').click(function() {
			var $this = $(this);
			var x = $this.attr("className");
			
			$('.toggle-item-' + x).slideToggle();
			var y = $('.' + x).html();
			if(y == "view more..."){
				$('.' + x).html('view less...');
			} else {
				$('.' + x).html('view more...');
			}
			
			return false;
			});
		});