$(function() {
	// initialise
	$("ul#portfolios li div.testimonial").slideUp().siblings("div.testimonial-buttons").prepend('<p class="button show-testimonial"><a href="#">View Testimonial &rarr;</a></p>');
	// attach events
	$("p.show-testimonial").click(function() {
		$(this).toggleClass("selected");
		$(this).parent().siblings("div.testimonial").slideToggle();
		return false;
	})
});