this.randomtip = function(){
	var length = $("#random-flash li").length;
	var ran = Math.floor(Math.random()*length) + 1;
	$("#random-flash li:nth-child(" + ran + ")").show();
};

$(document).ready(function(){	
	randomtip();
});
