//script for reloading results







//pass this the id u want it to load results in
//make sure its a string
function load_dropdown(cat,container_id){
	
	
	
	get = "cat="+cat;	
    file = "/inc/loaders/dropdown_loader.php?";
	
	response = $.ajax({
	   type: "GET",
	   url: file,
	   data: get,	
	   async:false   
	 }).responseText;

	container = document.getElementById(container_id);
	final_html = container.innerHTML + response;
	container.innerHTML = final_html;			
	 

}

function generate_dropdowns(){
	load_dropdown(1,'treadmills-list-item');
	load_dropdown(2,'ellipticals-list-item');
	load_dropdown(3,'exercise-bikes-list-item');
	load_dropdown(5,'accessories-list-item');
	load_dropdown(12,'home-gyms-list-item');
}


//actual funtion calls
window.onload = generate_dropdowns;


