$('.contact input.date').datepicker({minDate:1});
$('#employment-form input.date').datepicker();


setInterval(function(){
	$('#feature li:eq(1)').fadeIn(500).prev().fadeOut(500, function(){
		$(this).appendTo('#feature');
	})
}, 8000);
$('div.faq').each(function(){
	$(this).wrapInner('<div class="a"/>').find('.a').hide()
		.find('h2').addClass('js').prependTo(this).click(function(){
			$(this).next().toggle(300);
		});
})
