// JavaScript Document

$(document).ready(function(){ 	
	var n = Math.floor(Math.random() * $("#marketingimages li").length);	
	$("#marketingimages li:first").hide();		
	$("#marketingimages li:eq(" + n + ")").show();	
	
});
	