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

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

