$(document).ready(function(){
	$("#Toggle").click(function () {
		$("#toggleUpDown").slideToggle("slow");
	});
	$("#Toggle1").click(function () {
		$("#toggleUpDown1").slideToggle("slow");
	});
	$("#drill").mouseover(function () {
		$("#s_content").load("http://www.cxotoday.com/cxo/jsp/contentdrill.jsp").show();
	});
	$("#s_content").mouseover(function () {
		$("#s_content").show();
	});
	$("#s_content").mouseout(function () {
		$("#s_content").hide();
	});
	//loadCF();
	//setInterval("loadCF()",120000);
});

function loadCF()
{
	var time=new Date().getTime();
	var locationURL = document.location.toString();
	var cubotURL;
	if(locationURL.indexOf("enterpriser.cxotoday")!=-1)
	{
		cubotURL="enterpriser.cxotoday.com";
	}
	else
	{
		cubotURL="www.cxotoday.com";
	}

	//$("#fixme").html("");
	$("#fixme").load("http://"+cubotURL+"/cxo/jsp/catfish_cubot.jsp?timestamp="+time).show();
	//setInterval("loadCF()",1800000);
}

