// Comprovem si el jQuery està carregat a la pàgina
var jQueryScriptOutputted = false;

function initJquery()
{
	if (typeof(jQuery) == 'undefined')
	{
		if (! jQueryScriptOutputted)
		{
			jQueryScriptOutputted = true;
			document.write("<scr" + "ipt type=\"text/javascript\" src=\"http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js\"></scr" + "ipt>");
		}
		setTimeout("initJquery()", 50);
	}
	else
	{
		$(function() {
			initBackground();
		});
	}
}

initJquery();

function initBackground()
{
	var bg = new Image();
	bg.src = "/wp-content/themes/ebCAT/imatges/efecteFons.png";
	bg.onload = function()  {
		$("#fonsSuperior").css({'display':'none','background':"url('/wp-content/themes/ebCAT/imatges/efecteFons.png') no-repeat top center"});
		$("#fonsSuperior").fadeIn(500);
	};

}
