﻿$(document).ready( function(){
//EVENTS
	//FAQ visibility toggle
	$('#content .faq h3').click(function(){
		$(this).parent().children('p').toggle();
	});
	
//SERVICE
	$('#content .faq h3').parent().children('p').toggle();
});