this.randomtip = function(){
	var length = $("#ram-banner li").length; // this is where we put the id of the list
	var ran = Math.floor(Math.random()*length) + 1;
	$("#ram-banner li:nth-child(" + ran + ")").show();
};

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