function getArmory(character,realm,realmType,showProf,showGear,showAchiev,i,baseURL) {
	var myurl =  baseURL + "/wp-content/plugins/wow-armory/js/get_armory.php";
	var modurl = "character=" + character + "&realm=" + realm.replace(" ","+") + "&realmType=" + realmType + "&showProf=" + showProf + "&showAchiev=" + showAchiev + "&showGear=" + showGear;
	jQuery.ajax({
		url: myurl,
		data: modurl,
		type: "GET",
		success: function(msg) {
      jQuery("#armory-" + i).fadeOut('slow', function () {
        jQuery("#armory-" + i).html(msg);
        jQuery("#armory-" + i).fadeIn('slow');
      });
		},
		error: function(msg) {
      jQuery("#armory-" + i).fadeOut('slow', function () {
        jQuery("#armory-" + i).html("<h3>The Armory is Unavailable at this time.</h3>");
        jQuery("#armory-" + i).fadeIn('slow');
      });
		}
	});
}