function getProd(){
	Ajax.Request({
		url: conf.location + "/controller/user/ajax/getProd.php",
		onLoad: function() {
                    $("center#produsV").html("<img src=\""+conf.location+"/templates/user/image/loading_1.gif\" width=150 height=150/>");
		},
		onComplete: function(raspuns) {
                    $("center#produsV").html(raspuns);
		}
	});
        setTimeout("getProd()", 9000);
}
