$(document).ready(function() {
   
   $('#cosplayernavbar a').click(function() {
   	var section = $(this).attr('id');
   	var showtype = $(this).attr('name');
   	var cosplayerid = $(this).attr('rel');
   	$.ajax({
   		method: "get", url: "../func/showcostume.php", data: "a=" + cosplayerid + "&t=" + showtype + "&s=" + section,
   		beforeSend: function(){$('#celestialcostumes').html('<div class="normal"><img src="stuff/loading.gif"> Please Wait...</div>');},
   		success: function(html){ 
   			$('#celestialcostumes').html(html);
   		}
   	});
   	return false;
  });
  
  
 });
