jQuery.noConflict();
 
jQuery(document).ready(function($){
 
	// service page
	$('.more').hide('fast');
	$('.more-toggle').click(function(){
		$(this).parent().parent().next('.more').slideToggle("slow");
		return false;
	});
 
});