 var url = window.location.href;


/*
if(url="http://jakajar.djpie.co.uk")

{

	document.getElementById("all").style.minHeight='850px';

}/*/

function dynamic(callers)

{
	document.getElementById("dynamic_data").innerHTML="<img src='http://jakajar.com/images/load.gif' id='load' />"
	str=callers.id;
	clear_selected();
	document.getElementById(str).style.background='#99ccff';
	ajax_content(str);
}


function ajax_content(str){
    // Mozilla/Safari
    if (window.XMLHttpRequest) 
    {
        xmlHttpReqContent = new XMLHttpRequest();
    }
    // IE
    else if (window.ActiveXObject) 
    {
        xmlHttpReqContent = new ActiveXObject("Microsoft.XMLHTTP");
    }
    
    url = "includes/content.php?call="+str;
    xmlHttpReqContent.open('GET', url, true);
    xmlHttpReqContent.onreadystatechange = data; 
    xmlHttpReqContent.send(null);
}

function data(){
	if (xmlHttpReqContent.readyState == 4) 
	{ 
		if (xmlHttpReqContent.status == 200) 
		{	 
		document.getElementById("dynamic_data").innerHTML = xmlHttpReqContent.responseText;
		}
	}
}




function clear_selected(){
	document.getElementById("welcome").style.background='none';
	document.getElementById("power").style.background='none';
	document.getElementById("media").style.background='none';
	document.getElementById("budget").style.background='none';
	document.getElementById("offers").style.background='none';
	document.getElementById("web").style.background='none';
	document.getElementById("refurb").style.background='none';
	document.getElementById("handheld").style.background='none';
	document.getElementById("support").style.background='none';
}

function go_here(div){
call=div.id;	
location.href="http://jakajar.com/"+call;}  
