//Wimob Control Code
var headID = document.getElementsByTagName("head")[0];  
if (headID.getElementsByTagName("wimob")[0]==null)
{
	var cssNode = document.createElement('link');
	cssNode.type = 'text/css';
	cssNode.rel = 'stylesheet';
	cssNode.href = 'http://www.wimob.com/scripts/wimob2/wimob.css';
	cssNode.media = 'screen';
	headID.appendChild(cssNode);

	// cssNode = document.createElement('link');
	// cssNode.type = 'text/css';
	// cssNode.rel = 'stylesheet';
	// cssNode.href = 'http://www.wimob.com/scripts/wimob2/wimob_override.css';
	// cssNode.media = 'screen';
	// headID.appendChild(cssNode);
	
	jsFile = 'http://www.wimob.com/scripts/wimob2/wimobFunctions.js';
	document.write('<script type="text/javascript" src="' + jsFile + '"></scr' + 'ipt>');
	
	cssNode = document.createElement('wimob');
	headID.appendChild(cssNode);
}
