(function($) {
	var cache = [];
	// Arguments are image paths relative to the current page.
	$.preLoadImages = function() {
		var args_len = arguments.length;
		for (var i = args_len; i--;) {
			var cacheImage = document.createElement('img');
			cacheImage.src = arguments[i];
			cache.push(cacheImage);
		}
	}
})(jQuery)

function fundo_geral(jfundo){
	if(!jfundo){
		jfundo = "01";
	}
	i=1;
	$("div.inner").each(function() {
		var tudo = $("#tudo").offset();
		var janela = $(this).offset();
		fx=0;
		fy=0;
		//fx=+5;
		//fy=+10;
		bg_x = tudo.left - janela.left - 224 + fx;
		bg_y = tudo.top - janela.top + 169 + fy;

		$(this).css("background", "#C19358 url(img/bg_"+jfundo+"_gold.png) no-repeat "+bg_x+"px "+bg_y+"px"); 

	});
}
//alert("geral loaded");