$(document).ready(function () {

	$("input[title!='']").hint();
	
	$(".answer").hide();
	$(".questions a.question").click(function() {
		if ($(this).parent().find(".answer:hidden").length > 0)
			$(this).parent().parent().find(".answer:visible").slideToggle();
		$(this).parent().find(".answer").slideToggle();
	});
	
	//$("#footer-wrapper").css({ position: "static", bottom: 0 });
	
});

$(window).load(function() {

	if ($('#banner').length)
	{
		$('#banner').cycle({
			fx: 'fade',
			timeout: 5500
		});			
	}

});
