$(document).ready(function() { 
	imageCount = 8;
	rand = Math.floor ( Math.random ( ) * imageCount + 1 );
	$("#bubble").css("background-image", "url(\"uploads/tf/img/bubbles/bubble"+rand+".jpg\")");  
	$("#bubble").fadeIn(5000); 
});
