jQuery(document).ready(function($) {
  $('a[rel*=facebox]').facebox({
	loading_image : 'http://www.unlocking.com/focus/images/facebox/loading.gif',
	close_image   : 'http://www.unlocking.com/focus/images/facebox/closelabel.gif'
  }) 
})

var xmlHttp; 
function createRequest(){ 
	if(window.ActiveXObject){ 
		xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); 
	} else if(window.XMLHttpRequest){ 
		xmlHttp = new XMLHttpRequest(); 
	} 
} 
function ajax(model){ 
	createRequest(); 
	var url = "http://www.unlocking.com/focus/faq/ajax-models.php?make="+model; 
	xmlHttp.open("GET", url, true); 
	xmlHttp.onreadystatechange = StateChange; 
	xmlHttp.send(null); 
} 
function StateChange(){ 
	if(xmlHttp.readyState == 4){ 
		if (xmlHttp.status==200) {
			var models="";
			var models = xmlHttp.responseText;
			document.getElementById('models_list').innerHTML = models;
		} else {
			alert("Problem retrieving data:" + xmlhttp.statusText);
		}
	}
} 
    
