$(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').fadeOut(function() {
			$('ul.messages').remove();
		});
	}, 5000);

});


