function loadNews()
{
	URL = _host + 'Home/loadNews';
	new Ajax.Request(URL, { 
		method: 'get', 
		onSuccess: function(transport) { 
			$('boxLatest').update(transport.responseText);
		} 
	});
}

function toggleTab(x) 
{
	if(x == 1) {
		$('company_locator').style.display = 'none';
		$('tool_locator').style.display = 'block';
		$('tabS1').removeClassName('active');
		$('tabS2').addClassName('active');
	}
	else {
		$('tool_locator').style.display = 'none';
		$('company_locator').style.display = 'block';
		$('tabS2').removeClassName('active');
		$('tabS1').addClassName('active');
	}
}

function seoeng()
{
	if($('seoeng_website').value == 'enter your website address') {
		alert('Please enter your website');
		$('seoeng_website').value = 'http://';
		$('seoeng_website').focus();
		return false;
	}
	var _value = $('seoeng_website').value;
	window.open('http://search.seoeng.com/website/scoresheet.htm?website=' + _value + '&affiliateId=415');
	return false;
}

document.observe("dom:loaded", function() {
	// DAILY CAST
	
	var s1 = new SWFObject("http://www.topseos.com/index_player/flvplayer.swf", "mediaplayer", "292", "207", "8");
	s1.addParam("allowfullscreen","true");
	s1.addParam("wmode","transparent");
	s1.addParam("quality","high");
	s1.addVariable("flv", _videoFileName);
	s1.addVariable("title", _videoTitle);
	s1.addVariable("config", "http://www.topseos.com/index_player/skin/config.xml");
	s1.addVariable("autoplay", false);
	s1.addVariable("enablejs", true);
	s1.write("mediaspace");
	
	// NEWS RSS
	loadNews();
	
});