
var currentOne = new Array;
var number = 0;


jQuery(document).ready(
 function(){
  jQuery("#judgePanel .answer").hide();
  jQuery("#judgePanel a").click(
   function () {
    jQuery(this).children("span").slideDown(500);
    jQuery(this).children("span").animate({opacity: 1.0}, 3000);
    jQuery(this).children("span").slideUp(500);
    return false;
   }
  );
 }
);


function pausecomp(millis)
{
 var date = new Date();
 var curDate = null;
 do { curDate = new Date(); } while(curDate-date < millis);
 return true
}


$(document).ready(function() {
  $('#show-alert').click(function() {
	$('<div class="quick-alert">Alert! Watch me before it\'s too late!</div>')
	.insertAfter( $(this) )
	.fadeIn('slow')
	.animate({opacity: 1.0}, 3000)
	.fadeOut('slow', function() {
	  $(this).remove();
	});
  });
});