$(function () {

	var hiddendivs = $('div.hidden'); //selector for all the hidden div's
	var showmore = $('a.showhidden');

	showmore.live('click', function() {
		$(this).toggleClass('on')
		$(this).parent().nextAll('div.hidden:first').slideToggle(300)
		this.blur()
		return false;
	})

});

