﻿
this.randomtip = function(){
	var length = $(".movebox .conbox").length;
	var ran = Math.floor(Math.random()*length) + 1;
	$(".movebox .conbox:nth-child(" + ran + ")").show();
};

$(document).ready(function(){	
	randomtip();
});
