// JavaScript Document
function loadContent(id,rand) {      
	
	$.ajax({         
		type: "GET",                  
		dataType: 'jsonp', 
		jsonp: 'callback',
		url: "http://www.whitetailquest.com/wte/response.php",
		data: {what_auction:id},          
		success: function(html){                  
			
			$("#container").html(html);         
			}        
	
	});  

}
function loadContentSingle(id,rand) {      
	var container = '#container'+id;

	
	$.ajax({         
		type: "GET",                  
		dataType: 'jsonp', 
		jsonp: 'callback',
		url: "http://www.whitetailquest.com/wte/response-single.php",
		data: {what_pedigree:id},          
		success: function(html){                  
			
			$(container).html(html);         
			}        
	
	});  

}

