document.write("<scr"+"ipt type='text/javascript' src='javascript/jquery.js'></scr"+"ipt>");

function changeBackgroundImage(Obj, catalogID) {
	var tObj = Obj;
	 $(document).ready(function() {
			$.get("index.php", { name:"OE-ObjectEditor", file:"ajax", func:"getRandomImage", id:catalogID },
				function(data){
				tObj.style.backgroundImage = "url("+data+")";
			});  
	 });	
}