$(document).ready(function() {	
	$("body.services section.content p").hide();
	$("body.services section.content h2").click(function() {
		var toggle = $(this).toggleClass("open").is(".open");
		var content = $(this).next("p");
		
		if (!toggle) {
			$(content).stop(true, true).hide();
		} else {
			$(content).stop(true, true).slideDown();
		}
		
		return false;
	});
	
	$("body.clients blockquote a.more").click(function() {
		$("<img src='"+$(this).attr('href')+"' title='Click to close'>").modal({overlayClose: true});
		$("#simplemodal-container").click(function(){$.modal.close()});
		return false;
	});
});
