if(jQuery) {
	$(function() {
		if(jQuery().supersleight) {
			$('#logo').supersleight();
			$('#header form').supersleight();
			$('#call_action').supersleight();
		}
		$('#footer ul li:first-child + li').css('border','none');
		$('#header ul > li').hover(
			function() {$(this).addClass('hover');},
			function() {$(this).removeClass('hover');}
		);
		
		$(".faq .answer").hide();
		$(".faq .question").css("cursor", "pointer");
		$(".faq .question").toggle(
			function() {$(".faq .answer").hide(); $(this).next().show();},
			function() {$(".faq .answer").hide();}
		);
	});
}