$(document).ready(function() {
	
	$('a.autolink').cluetip({
    	showTitle: false
  	});

	$('.criteria-list h3 a').click(function() {
		$(this).parent('h3').next('div.criteria-questions').slideToggle();
		$(this).parent('h3').toggleClass('on');
		return false;
	});
	
	$('a.dropdown').click(function() {
		$(this).parent('li').toggleClass("down");
		$(this).next('div.body ul li ul.collapse').slideToggle("fast");
		return false;
	});
	
});