$(document).ready(function() {
	$("form.af input[type='text']:first").focus();
});

$(document).ready(function() {
	$('.faq-style').find('li').find('div:first').each(function() {
		$(this).html('<h3>' + $(this).parent().find('a:first').html() + '</h3>' + $(this).html());
	});
	$('.faq-style li div ul').find('li').find('div:first').each(function() {
		$(this).html('<h3>' + $(this).parent().find('a:first').html() + '</h3>' + $(this).html());
	});
	$('.faq-style').find('li').find('a:first').toggle(
		function() {
			if (!$(this).parent().find('div:first').hasClass('show'))
				$(this).parent().find('div:first').slideDown();
			return false;
		},
		function() {
			if (!$(this).parent().find('div:first').hasClass('show'))
				$(this).parent().find('div:first').slideUp();
			return false;
		}
	);
});