$(document).ready(function() {
	
	$('.max').click(function() {
		$(this).next().next().toggle();
		$(this).toggleClass('min');
		resize();
	});
	$('.faq #box h3').click(function() {
		$(this).next().toggle();
		$(this).prev().toggleClass('min');
		resize();
	});

	function resize(){
		if(typeof parent.resizeiFrame == 'function') {
			$('html').css('overflow', 'hidden');
			parent.resizeiFrame($('#container').outerHeight()+20);
		}
	}

});
