// ============================================
// randomtips.js
// 
// ============================================

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

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