/*
 * SHQL.ORG JS TRASH BIN
 */

function defTicker() {
	// Intro
	defTickerIntro();
	
	// Remove text
	$("#definition").empty();
	
	// Get data
	$("#definition").load("index.php?module=defFun", { action : "get" }, function () {
		defTickerOutro();
	});
}

function defTickerIntro() {
	$("#definition").slideUp("fast");
	$("#defStatus").fadeIn("fast");
}

function defTickerOutro() {
	$("#definition").slideDown("fast");
	$("#defStatus").fadeOut("fast");
}
