// X-JHEDStudios Portfolio JavaScript Document

function displayFeatured(fID,fBox,fURL){
	i=1;
	while(i<=3){
		feat = 'feat_0'+i;
		document.getElementById(feat).className = "fp-thumb";
		i++;
	}

	document.getElementById(fID).className = "fp-thumb-sel";

	// Load Variables
	fBox = document.getElementById(fBox);
	// Initialize
	ajax_request(fURL+"&"+uniqPG(),fBox);
}