$(function() {

	if ($('.cake-sql-log').length > 0) {
		$('.cake-sql-log').hide();
		$('<a href="#">Toggle Sql Log<\/a>')
			.insertBefore($('.cake-sql-log'))
			.click(function() {
				$('.cake-sql-log').toggle();
				return false;
			});
	}

	window.setTimeout(function() {
        $('ul.messages').each(function() {
            var $list = $(this);
            if ($('.error', $list).size() == 0) {
                $list.fadeOut();
            }
        });
	}, 5000);
});

