$(document).ready(function() {
	var divRodape = document.getElementById('footerDiv');
	divRodape.innerHTML = '<div style="float:right; text-align:right;" mce_style="float:right; text-align:right;">Powered by <a href="http://pkp.sfu.ca/?q=ojs" mce_href="http://pkp.sfu.ca/?q=ojs" target="blanck">OJS/PKP</a></div><a href="http://creativecommons.org/licenses/by-nc-nd/3.0/" mce_href="http://creativecommons.org/licenses/by-nc-nd/3.0/"><img style="border-width:0" mce_style="border-width:0" src="http://i.creativecommons.org/l/by-nc-nd/3.0/80x15.png" mce_src="http://i.creativecommons.org/l/by-nc-nd/3.0/80x15.png"  alt="Creative Commons License" /></a> Licensed to <a href="http://www.giriweb.com" mce_href="http://www.giriweb.com">GIRI</a> under <a href="http://creativecommons.org/licenses/by-nc-nd/3.0/" mce_href="http://creativecommons.org/licenses/by-nc-nd/3.0/">CCPL</a>.<br /><b>Copyright:</b> ©2008-2009 GIRI - Groupe International de Recherche sur l\'Infinitésimal (International Research Group on Very Low Dose and High Dilution Effects)<br /><b>International Journal of High Dilution Research:</b> http://www.feg.unesp.br/ijhdr <a href="mailto:ijhdr.editor@feg.unesp.br" mce_href="mailto:ijhdr.editor@feg.unesp.br"><img src="http://www.feg.unesp.br/~ojs/zacha_ijhdr/carta.gif" mce_src="/~ojs/zacha_ijhdr/carta.gif" border="0" alt="" /></a><br /><b>Site Manager: </b> Paulo Henrique dos Santos Domingos <a href="mailto:paulohenrique@live.com.ph" mce_href="mailto:paulohenrique@live.com.ph"><img src="http://www.feg.unesp.br/~ojs/zacha_ijhdr/carta.gif" mce_src="/~ojs/zacha_ijhdr/carta.gif" border="0" alt="" /></a><br><b>Site Manager: </b> Uriel Brasil Nunes Costa<a href="mailto:urielbrasil@gmail.com" mce_href="urielbrasil@gmail.com"> <img src="http://www.feg.unesp.br/~ojs/zacha_ijhdr/carta.gif" mce_src="/~ojs/zacha_ijhdr/carta.gif" border="0" alt="" /></a>';
	
	function getHTTPObject()
	{
		var req;
		try
		{
			req = new XMLHttpRequest();
			return req;
		}
		catch(ex) {}
		try
		{
			req = new ActiveXObject("Microsoft.XMLHTTP");
			return req;
		} 
		catch(ex){};
		try
		{
			req = new ActiveXObject("Msxml2.XMLHTTP");
			return req;
		}
		catch(ex) {};
		alert("XmlHttp Objects not supported by client browser");
		req = null;
	}
	
	divWelcome = document.createElement("div");
	divWelcome.setAttribute("id", "divWelcome");
	try
	{
		document.getElementById("breadcrumb").appendChild(divWelcome);
	}
	catch(ex){};
	ajaxLoadWelcome = getHTTPObject();
	ajaxLoadWelcome.open("GET", "http://www.feg.unesp.br/~ojs/zacha_ijhdr/layoutIJHDR/loadWelcome/?r="+Math.floor(Math.random()*9999), true);
	ajaxLoadWelcome.onreadystatechange = function()
	{
		if (ajaxLoadWelcome.readyState == 4)
		{
			document.getElementById("divWelcome").innerHTML = ajaxLoadWelcome.responseText;
		}
	}
	ajaxLoadWelcome.send(null);
});
