var timerID='';
$(document).ready(function() {
		$("a").mouseover(function () {
			$(this).css("color","green");
			}).mouseout(function(){
				$(this).css("color","");});
		$("a").mouseup(function () {
			$(this).hide("explode", {}, 1000);
			return false;
			});
});

