function Credit(cType,cOrg,cLocation,cAcknowledge){
	this.type=cType;
	this.organization=cOrg;
	this.location=cLocation;
	this.acknowledgement=cAcknowledge;
}
Credit.BEST_OF_SHOW=0;
Credit.FIRST_PLACE=1;
Credit.SECOND_PLACE=2;
Credit.THIRD_PLACE=3;
Credit.HONORABLE_MENTION=4;
Credit.VIEWERS_CHOICE=5;
Credit.SHOW=6;
Credit.TV_VIDEO=7;
Credit.PUBLISHED=8;
Credit.labels=new Array("Best Of Show","First Place","Second Place","Third Place","Honorable Mention","Viewers Choice","Juried Show","TV/Video","Published");
Credit.icons=new Array("credit_best","credit_first","credit_second","credit_third","credit_honorable","credit_viewers","credit_show","credit_video","credit_pub");