// Năo apaguem esta página, ela serve para preencher o calendário
// by heber
var currentYear = getNumber(new Date().getFullYear());
var currentMonth = getNumber(new Date().getMonth())+1;
var mesesImagens = new Array();
mesesImagens["00"] = "http://img208.imageshack.us/img208/4323/nomonth.png";
mesesImagens["01"] = "http://img504.imageshack.us/img504/2060/janeiro.png";
mesesImagens["02"] = "http://img520.imageshack.us/img520/6303/fevereiro.png";
mesesImagens["03"] = "http://img91.imageshack.us/img91/9928/marco.png";
mesesImagens["04"] = "http://img243.imageshack.us/img243/7650/abril.png";
mesesImagens["05"] = "http://img523.imageshack.us/img523/3217/maio.png";
mesesImagens["06"] = "http://img8.imageshack.us/img8/7521/junho.png";
mesesImagens["07"] = "http://img187.imageshack.us/img187/2901/julho.png";
mesesImagens["08"] = "http://img136.imageshack.us/img136/222/agosto.png";
mesesImagens["09"] = "http://img141.imageshack.us/img141/1875/setembro.png";
mesesImagens["10"] = "http://img165.imageshack.us/img165/6558/outubro.png";
mesesImagens["11"] = "http://img145.imageshack.us/img145/3220/novembro.png";
mesesImagens["12"] = "http://img189.imageshack.us/img189/4831/dezembro.png";
function ClothMyth(nome,img,data,url,reino,brasil,classe,versao,appendix,face,cancelado){
this.nome = nome;
this.url = url;
this.img = img;
this.data = data;
this.brasil = brasil;
this.reino = reino;
this.classe = classe;
this.versao = versao;
this.appendix = appendix;
this.face = face;
this.cancelado = cancelado;
this.lancamento = function(){
var ano = getNumber(this.data.split("/")[1]);
var mes = getNumber(this.data.split("/")[0]);
return (ano == currentYear) && (mes == currentMonth);
}
this.lancado = function(){
var ano = getNumber(this.data.split("/")[1]);
if(ano > currentYear){
return false;
}
var mes = getNumber(this.data.split("/")[0]);
if(mes > currentMonth && ano >= currentYear){
return false;
}
return true;
}
}
function Appendix(nome){
this.img = null;
this.url = null;
this.data = null;
this.cloths = new Array();
}
function getNumber(text){
var r = "";
for(var i = 0; i < text.length; i++){
var c = text.charAt(i);
if(r == "" && c == "0"){
continue;
}
r += c;
}
if(r == ""){
r = text;
}
return parseInt(r);
}
function sortByData(a,b){
var result = -1;
var d1 = a.data.split("/");
var d2 = b.data.split("/");
if(d1[1] > d2[1]){
result = -1;
} else if(d1[1] < d2[1]){
result = 1;
} else if(d1[0] > d2[0]){
result = 1;
} else if(d1[0] < d2[0]){
result = -1;
}
return result;
}
function Estatisticas(){
this.lancados = 0;
this.anunciados = 0;
this.previstos = 0;
this.contabiliza = function(c){
if(c.lancado()){
this.lancados++;
} else {
this.anunciados++;
}
}
}
function Grupo(nome){
this.cloths = new Estatisticas();
this.appendix = new Estatisticas();
this.nome = nome;
this.clothmyths = new Array();
this.length = function(){
return this.clothmyths.length;
}
this.sort = function(ordenador){
this.clothmyths.sort(ordenador);
}
this.add = function(c){
this.clothmyths[this.length()] = c;
if(c.appendix){
this.appendix.contabiliza(c);
} else {
this.cloths.contabiliza(c);
}
}
}
function Colecao(){
this.all = new Grupo("Todos");
this.appendix = new Grupo("Appendix");
this.clothmyth = new Grupo("Cloth Myth");
this.clothsPorAno = new Array();
this.clothsPorMes = new Array();
this.clothsPorReino = new Array();
this.clothsPorClasse = new Array();
this.clothsNoBrasil = new Grupo("Brasil");
this.clothsLancados = new Grupo("Lancados");
this.clothsAnunciados = new Grupo("Anunciados");
this.sort = function(ordenador){
this.all.sort(ordenador);
}
this.length = function(){
return this.all.clothmyths.length;
}
this.appendClothMyth = function(c){
this.all.add(c);
if(c.lancado()){
this.clothsLancados.add(c);
} else {
this.clothsAnunciados.add(c);
}
var ano = c.data.split("/")[1];
var mes = c.data.split("/")[0];
if(!this.clothsPorAno[ano]){
this.clothsPorAno[ano] = new Grupo(ano);
}
this.clothsPorAno[ano].add(c);
if(!this.clothsPorMes[mes]){
this.clothsPorMes[mes] = new Grupo(mes);
}
this.clothsPorMes[mes].add(c);
if(!this.clothsPorReino[c.reino]){
this.clothsPorReino[c.reino] = new Grupo(c.reino);
}
this.clothsPorReino[c.reino].add(c);
if(c.brasil && ("" + c.brasil == "true")){
this.clothsNoBrasil.add(c);
}
if(!this.clothsPorClasse[c.classe]){
this.clothsPorClasse[c.classe] = new Grupo(c.classe);
}
this.clothsPorClasse[c.classe].add(c);
if(c.appendix){
this.appendix.add(c);
} else {
this.clothmyth.add(c);
}
}
}
var colecao = new Colecao();
var a = "Athena", p = "Poseidon", h = "Hades", o = "Odin";
var bronze = "Cavaleiros de Bronze", prata = "Cavaleiros de Prata", ouro = "Cavaleiros de Ouro", general = "Generais Marina", kyoto = "Kyotos", deus = "Deuses", espectro = "Espectros", guerreiro = "Guerreiros deus";
var reinos = new Array();
reinos[a] = a;
reinos[o] = o;
reinos[p] = p;
reinos[h] = h;
reinos[null] = "outros";
var classes = new Array();
classes[bronze] = bronze;
classes[prata] = prata;
classes[ouro] = ouro;
classes[guerreiro] = guerreiro;
classes[general] = general;
classes[espectro] = espectro;
classes[kyoto] = kyoto;
classes[deus] = deus;
classes[null] = "outros";
var meses = new Array();
meses["01"] = "Janeiro";
meses["02"] = "Fevereiro";
meses["03"] = "Março";
meses["04"] = "Abril";
meses["05"] = "Maio";
meses["06"] = "Junho";
meses["07"] = "Julho";
meses["08"] = "Agosto";
meses["09"] = "Setembro";
meses["10"] = "Outubro";
meses["11"] = "Novembro";
meses["12"] = "Dezembro";
colecao.appendClothMyth(new ClothMyth('Pegaso Seiya V2','http://img365.imageshack.us/img365/8915/pegasov2.png','12/2003','http://www.clothmythbrasil.com/seiya-de-pegasus-f18/','Athena',true,'Cavaleiros de Bronze',null,false,'http://a.imageshack.us/img80/1978/seiya2f.jpg',false));
colecao.appendClothMyth(new ClothMyth('Dragon Shiryu V2','http://img231.imageshack.us/img231/2613/dragonv2.png','12/2003','http://www.clothmythbrasil.com/shiryu-de-dragao-f19/shiryu-de-dragao-2-armadura-t5.htm','Athena',true,'Cavaleiros de Bronze',null,false,'http://img221.imageshack.us/img221/9610/shiryu2nw4.jpg',false));
colecao.appendClothMyth(new ClothMyth('Cisne Hyoga V2','http://img214.imageshack.us/img214/5154/cisnev2.png','01/2004','http://www.clothmythbrasil.com/hyoga-de-cisne-f20/hyoga-de-cisne-2-armadura-t18.htm','Athena',true,'Cavaleiros de Bronze',null,false,'http://img509.imageshack.us/img509/4755/hyoga2ez3.jpg',false));
colecao.appendClothMyth(new ClothMyth('Andromeda Shun V2','http://img365.imageshack.us/img365/1489/andromedav2.png','02/2004','http://www.clothmythbrasil.com/shun-de-andromeda-f21/shun-de-andromeda-2-armadura-t23.htm','Athena',true,'Cavaleiros de Bronze',null,false,'http://img142.imageshack.us/img142/9867/shun2wh4.jpg',false));
colecao.appendClothMyth(new ClothMyth('Fenix Ikki V2','http://img13.imageshack.us/img13/7058/fenixv2.png','03/2004','http://www.clothmythbrasil.com/ikki-de-fenix-f22/ikki-de-fenix-2-armadura-t27.htm','Athena',true,'Cavaleiros de Bronze',null,false,'http://img508.imageshack.us/img508/1586/ikki2ts0.jpg',false));
colecao.appendClothMyth(new ClothMyth('Leo Aiolia','http://img246.imageshack.us/img246/4927/leao.png','04/2004','http://www.clothmythbrasil.com/aiolia-de-leao-f42/imagens-aiolia-de-leao-t35.htm','Athena',true,'Cavaleiros de Ouro',null,false,'http://img63.imageshack.us/img63/9348/aiolia.jpg',false));
colecao.appendClothMyth(new ClothMyth('Aquarius Camus','http://img269.imageshack.us/img269/3305/aquarioy.png','06/2004','http://www.clothmythbrasil.com/camus-de-aquario-f47/imagens-camus-de-aquario-t46.htm','Athena',true,'Cavaleiros de Ouro',null,false,'http://img508.imageshack.us/img508/3872/camusmy7.jpg',false));
colecao.appendClothMyth(new ClothMyth('Virgo Shaka','http://img442.imageshack.us/img442/6755/virgem.png','08/2004','http://www.clothmythbrasil.com/shaka-de-virgem-f43/imagens-shaka-de-virgem-t49.htm','Athena',true,'Cavaleiros de Ouro',null,false,'http://img221.imageshack.us/img221/8382/shakasu5.jpg',false));
colecao.appendClothMyth(new ClothMyth('Sagitarius Aiolos','http://img48.imageshack.us/img48/5498/sagitario.png','10/2004','http://www.clothmythbrasil.com/aiolos-de-sagitario-f45/aiolos-de-sagitario-t34.htm','Athena',true,'Cavaleiros de Ouro',null,false,'http://img171.imageshack.us/img171/9216/aiolosab6.jpg',false));
colecao.appendClothMyth(new ClothMyth('Capricorn Shura','http://img514.imageshack.us/img514/2959/capricornio.png','12/2004','http://www.clothmythbrasil.com/shura-de-capricornio-f46/shura-de-capricornio-t45.htm','Athena',true,'Cavaleiros de Ouro',null,false,'http://img98.imageshack.us/img98/3142/shurafs5.jpg',false));
colecao.appendClothMyth(new ClothMyth('Wyvern Radamanthys','http://img255.imageshack.us/img255/4760/wyvern.png','01/2005','http://www.clothmythbrasil.com/radamanthys-de-wyvern-f59/radamanthys-de-wyvern-t109.htm','Hades',true,'Kyotos',null,false,'http://a.imageshack.us/img839/8112/radamanthys.jpg',false));
colecao.appendClothMyth(new ClothMyth('Libra Dohko','http://img408.imageshack.us/img408/5400/libra.png','02/2005','http://www.clothmythbrasil.com/dohko-de-libra-f44/dohko-de-libra-t43.htm','Athena',true,'Cavaleiros de Ouro',null,false,'http://img82.imageshack.us/img82/7003/dohko.jpg',false));
colecao.appendClothMyth(new ClothMyth('Pegaso Seiya V3','http://img368.imageshack.us/img368/1632/pegasov3.png','03/2005','http://www.clothmythbrasil.com/seiya-de-pegasus-f23/imagens-seiya-v3-t41.htm#91','Athena',true,'Cavaleiros de Bronze',null,false,'http://a.imageshack.us/img204/6977/seiya3.jpg',false));
colecao.appendClothMyth(new ClothMyth('Cancer Death Mask','http://img255.imageshack.us/img255/4782/cancer.png','04/2005','http://www.clothmythbrasil.com/mascara-da-morte-de-cancer-f41/imagens-mascara-da-morte-de-cancer-t33.htm','Athena',true,'Cavaleiros de Ouro',null,false,'http://a.imageshack.us/img641/7129/deathmask.jpg',false));
colecao.appendClothMyth(new ClothMyth('Aries Mu','http://img514.imageshack.us/img514/2269/aries.png','06/2005','http://www.clothmythbrasil.com/mu-de-aries-f38/imagens-mu-de-aries-t13.htm','Athena',true,'Cavaleiros de Ouro',null,false,'http://img146.imageshack.us/img146/7183/muoh7.jpg',false));
colecao.appendClothMyth(new ClothMyth('Scorpion Milo','http://img231.imageshack.us/img231/2802/escorpiao.png','08/2005','http://www.clothmythbrasil.com/milo-de-escorpiao-f49/imagens-milo-de-escorpiao-t44.htm','Athena',true,'Cavaleiros de Ouro',null,false,'http://img145.imageshack.us/img145/1301/milogf7.jpg',false));
colecao.appendClothMyth(new ClothMyth('Dragon Shiryu V3','http://img200.imageshack.us/img200/5695/dragonv3.png','09/2005','http://www.clothmythbrasil.com/shiryu-de-dragao-f28/imagens-shiryu-de-dragao-v3-t32.htm','Athena',true,'Cavaleiros de Bronze',null,false,'http://img98.imageshack.us/img98/3895/shiryu3ea0.jpg',false));
colecao.appendClothMyth(new ClothMyth('Tauros Aldebaran','http://img401.imageshack.us/img401/1671/touro.png','10/2005','http://www.clothmythbrasil.com/aldebaran-de-touro-f39/imagens-aldebaran-de-touro-t20.htm','Athena',true,'Cavaleiros de Ouro',null,false,'http://img509.imageshack.us/img509/3599/aldebaranoq4.jpg',false));
colecao.appendClothMyth(new ClothMyth('Grand Pope','http://img404.imageshack.us/img404/1222/grandtpope.png','11/2005','http://www.clothmythbrasil.com/grande-mestre-f71/imagens-grand-pope-t48.htm','Athena',true,null,null,false,'http://img93.imageshack.us/img93/3926/popeshion.jpg',false));
colecao.appendClothMyth(new ClothMyth('Hidra Ichi','http://img264.imageshack.us/img264/5386/hidra.png','11/2005','http://www.clothmythbrasil.com/ichi-de-hidra-f33/imagens-ichi-de-hidra-t75.htm','Athena',true,'Cavaleiros de Bronze',null,false,'http://a.imageshack.us/img17/9253/ichiup.jpg',false));
colecao.appendClothMyth(new ClothMyth('Unicorn Jabu','http://img264.imageshack.us/img264/7128/unicornio.png','11/2005','http://www.clothmythbrasil.com/jabu-de-unicornio-f32/imagens-jabu-de-unicornio-t74.htm','Athena',true,'Cavaleiros de Bronze',null,false,'http://img142.imageshack.us/img142/5369/jabupv6.jpg',false));
colecao.appendClothMyth(new ClothMyth('Gemini Saga','http://img186.imageshack.us/img186/9058/gemeos.png','12/2005','http://www.clothmythbrasil.com/saga-de-gemeos-f40/imagens-saga-de-gemeos-t28.htm','Athena',true,'Cavaleiros de Ouro',null,false,'http://img525.imageshack.us/img525/4159/sagaja8.jpg',false));
colecao.appendClothMyth(new ClothMyth('Pisces Afrodite','http://img398.imageshack.us/img398/9306/peixes.png','02/2006','http://www.clothmythbrasil.com/afrodite-de-peixes-f48/imagens-afrodite-t47.htm','Athena',true,'Cavaleiros de Ouro',null,false,'http://img247.imageshack.us/img247/4243/afroditeqm4.jpg',false));
colecao.appendClothMyth(new ClothMyth('Cisne Hyoga V3','http://img514.imageshack.us/img514/8810/cisnev3.png','03/2006','http://www.clothmythbrasil.com/hyoga-de-cisne-f29/imagens-hyoga-de-cisne-v3-t15.htm','Athena',true,'Cavaleiros de Bronze',null,false,'http://img510.imageshack.us/img510/3475/hyoga3dm6.jpg',false));
colecao.appendClothMyth(new ClothMyth('Nachi de Lobo','http://img171.imageshack.us/img171/1402/lobo.png','04/2006','http://www.clothmythbrasil.com/nachi-de-lobo-f34/imagens-nachi-de-lobo-t112.htm','Athena',false,'Cavaleiros de Bronze',null,false,'http://img337.imageshack.us/img337/4579/nachi.jpg',false));
colecao.appendClothMyth(new ClothMyth('Leo Minor Ban','http://img178.imageshack.us/img178/1853/leaomenor.png','04/2006','http://www.clothmythbrasil.com/ban-de-leao-menor-f35/imagens-ban-de-leao-menor-t30.htm','Athena',false,'Cavaleiros de Bronze',null,false,'http://img512.imageshack.us/img512/63/banvy1.jpg',false));
colecao.appendClothMyth(new ClothMyth('Garuda Aiacos','http://img167.imageshack.us/img167/7379/garuda.png','05/2006','http://www.clothmythbrasil.com/aiacos-de-garuda-f69/imagens-aiacos-de-garuda-t68.htm','Hades',true,'Kyotos',null,false,'http://img171.imageshack.us/img171/9969/aiacosdz9.jpg',false));
colecao.appendClothMyth(new ClothMyth('Lira Orfeu','http://img264.imageshack.us/img264/5348/lira.png','06/2006','http://www.clothmythbrasil.com/orfeu-de-lira-f37/orfeu-de-lira-t66.htm','Athena',true,'Cavaleiros de Prata',null,false,'http://img395.imageshack.us/img395/8117/orpheu.jpg',false));
colecao.appendClothMyth(new ClothMyth('Andromeda Shun V3','http://img365.imageshack.us/img365/8784/andromedav3.png','08/2006','http://www.clothmythbrasil.com/shun-de-andromeda-f30/imagens-shun-v3-t42.htm','Athena',false,'Cavaleiros de Bronze',null,false,'http://img146.imageshack.us/img146/5087/shun3tr9.jpg',false));
colecao.appendClothMyth(new ClothMyth('Duhbe Siegfried','http://img91.imageshack.us/img91/8944/duhbe.png','09/2006','http://www.clothmythbrasil.com/siegfried-de-dubhe-f52/imagens-siegfried-de-dubhe-t14.htm#37','Odin',true,'Guerreiros deus',null,false,'http://img98.imageshack.us/img98/244/siegfriednq7.jpg',false));
colecao.appendClothMyth(new ClothMyth('Bear Geki','http://img255.imageshack.us/img255/7750/urso.png','10/2006','http://www.clothmythbrasil.com/geki-de-urso-f36/imagens-geki-de-urso-t248.htm','Athena',true,'Cavaleiros de Bronze',null,false,'http://img385.imageshack.us/img385/1696/geki.jpg',false));
colecao.appendClothMyth(new ClothMyth('Pandora','http://img398.imageshack.us/img398/6973/pandora.png','11/2006','http://www.clothmythbrasil.com/pandora-f70/imagens-pandora-t70.htm','Hades',true,null,null,false,'http://img510.imageshack.us/img510/3263/pandoraas1.jpg',false));
colecao.appendClothMyth(new ClothMyth('Griffon Minos','http://img408.imageshack.us/img408/1517/griffon.png','11/2006','http://www.clothmythbrasil.com/minos-de-grifo-f68/imagens-minos-de-griffon-t182.htm','Hades',true,'Kyotos',null,false,'http://img120.imageshack.us/img120/4940/minosro7.jpg',false));
colecao.appendClothMyth(new ClothMyth('Kraken Issac','http://img186.imageshack.us/img186/3732/kraken.png','12/2006','http://www.clothmythbrasil.com/isaac-de-kraken-f50/imagens-isaac-de-kraken-t211.htm','Poseidon',true,'Generais Marina',null,false,'http://img134.imageshack.us/img134/1548/isaakie4.jpg',false));
colecao.appendClothMyth(new ClothMyth('Sea Dragon Kanon','http://img13.imageshack.us/img13/588/dragaomarinho.png','02/2007','http://www.clothmythbrasil.com/kanon-de-dragao-marinho-f51/imagens-kanon-de-dragao-marinho-t663.htm','Poseidon',true,'Generais Marina',null,false,'http://img205.imageshack.us/img205/2155/kanonyg8.jpg',false));
colecao.appendClothMyth(new ClothMyth('Gemini Saga','http://img222.imageshack.us/img222/9006/app1gemini.png','03/2007','http://www.clothmythbrasil.com/bustos-appendix-f65/imagens-appendix-pack-1-t3372.htm','Athena',false,'Cavaleiros de Ouro','pack 1',true,'http://img70.imageshack.us/img70/8843/sagabusto.jpg',false));
colecao.appendClothMyth(new ClothMyth('Wyvern Radamanthys','http://img128.imageshack.us/img128/834/app1wyvern.png','03/2007','http://www.clothmythbrasil.com/bustos-appendix-f65/imagens-appendix-pack-1-t3372.htm','Hades',false,'Kyotos','pack 1',true,'http://img510.imageshack.us/img510/6246/radamanthysbustoul0.jpg',false));
colecao.appendClothMyth(new ClothMyth('Pegaso Seiya','http://img368.imageshack.us/img368/8573/app1seiya.png','03/2007','http://www.clothmythbrasil.com/bustos-appendix-f65/imagens-appendix-pack-1-t3372.htm','Athena',false,'Cavaleiros de Bronze','pack 1',true,'http://img170.imageshack.us/img170/1623/seiyabustohw2.jpg',false));
colecao.appendClothMyth(new ClothMyth('Virgo Shaka','http://img404.imageshack.us/img404/289/app1virgo.png','03/2007','http://www.clothmythbrasil.com/bustos-appendix-f65/imagens-appendix-pack-1-t3372.htm','Athena',false,'Cavaleiros de Ouro','pack 1',true,'http://img120.imageshack.us/img120/3315/shakabustoso3.jpg',false));
colecao.appendClothMyth(new ClothMyth('Fenix Ikki','http://img91.imageshack.us/img91/8006/fenixv3.png','03/2007','http://www.clothmythbrasil.com/ikki-de-fenix-f31/imagens-ikki-de-fenix-t322.htm','Athena',true,'Cavaleiros de Bronze',null,false,'http://a.imageshack.us/img706/6082/ikki3.jpg',false));
colecao.appendClothMyth(new ClothMyth('Aries Shion','http://img526.imageshack.us/img526/7448/ariessapuris.png','06/2007','http://www.clothmythbrasil.com/shion-sapuris-f82/imagens-shion-sapuris-t952.htm','Hades',true,'Espectros',null,false,'http://img221.imageshack.us/img221/5619/shionsapurisir4.jpg',false));
colecao.appendClothMyth(new ClothMyth('Sirene Sorento','http://img340.imageshack.us/img340/3986/sirene.png','08/2007','http://www.clothmythbrasil.com/sorento-de-sirene-f73/imagens-sorento-de-sirene-t662.htm','Poseidon',true,'Generais Marina',null,false,'http://img241.imageshack.us/img241/1685/sorentozu4.jpg',false));
colecao.appendClothMyth(new ClothMyth('Mizar Syd','http://img365.imageshack.us/img365/7498/mizar.png','09/2007','http://www.clothmythbrasil.com/shido-de-mizar-f190/imagens-shido-de-mizar-t1138.htm','Odin',false,'Guerreiros deus',null,false,'http://img145.imageshack.us/img145/3872/sydim0.jpg',false));
colecao.appendClothMyth(new ClothMyth('Hades Shun','http://img175.imageshack.us/img175/5246/shunhades.png','09/2007','http://www.clothmythbrasil.com/shun-hades-f83/imagens-shun-hades-t1155.htm','Hades',false,'Deuses',null,false,'http://img401.imageshack.us/img401/6471/hadesjl0.jpg',false));
colecao.appendClothMyth(new ClothMyth('Chrysaor Krishna','http://img255.imageshack.us/img255/3353/chrysaor.png','10/2007','http://www.clothmythbrasil.com/krishna-de-chrysaor-f212/imagens-krishna-de-chrysaor-t1688.htm','Poseidon',false,'Generais Marina',null,false,'http://a.imageshack.us/img836/61/krishma.jpg',false));
colecao.appendClothMyth(new ClothMyth('Cristal','http://img158.imageshack.us/img158/5694/cristal.png','11/2007','http://www.clothmythbrasil.com/cavaleiro-de-cristal-f77/imagens-cavaleiro-de-cristal-t703.htm','Athena',false,'Cavaleiros de Prata',null,false,'http://img510.imageshack.us/img510/6961/cristaluo9.jpg',false));
colecao.appendClothMyth(new ClothMyth('Dragon Shiryu','http://img142.imageshack.us/img142/816/plain1shiryu.png','11/2007','http://www.clothmythbrasil.com/bustos-appendix-f65/imagens-plain-cloth-pack-1-t3373.htm','Athena',true,'Cavaleiros de Bronze','plain cloths pack 1',true,'http://img134.imageshack.us/img134/9496/shiryuplainsb7.jpg',false));
colecao.appendClothMyth(new ClothMyth('Pegaso Seiya','http://img141.imageshack.us/img141/5543/plain1seiya.png','11/2007','http://www.clothmythbrasil.com/bustos-appendix-f65/imagens-plain-cloth-pack-1-t3373.htm','Athena',true,'Cavaleiros de Bronze','plain cloths pack 1',true,'http://img205.imageshack.us/img205/3545/seiyaplainbn7.jpg',false));
colecao.appendClothMyth(new ClothMyth('Merak Hagen','http://img60.imageshack.us/img60/9089/merak.png','12/2007','http://www.clothmythbrasil.com/hagen-de-merak-f211/imagens-hagen-de-merak-t1958.htm','Odin',true,'Guerreiros deus',null,false,'http://img508.imageshack.us/img508/9803/hagenyb5.jpg',false));
colecao.appendClothMyth(new ClothMyth('Bronze especial pack','http://img12.imageshack.us/img12/117/bronzed.png','12/2007','http://www.clothmythbrasil.com/cavaleiros-de-bronze-2-armadura-f3/imagens-relancamentos-dos-cinco-bronzeados-t2000.htm','Athena',false,'Cavaleiros de Bronze',null,false,'http://a.imageshack.us/img230/5137/bronzev2large.jpg',false));
colecao.appendClothMyth(new ClothMyth('Sea Horse Biam','http://img132.imageshack.us/img132/6192/biam.png','01/2008','http://www.clothmythbrasil.com/baian-de-cavalo-marinho-f213/imagens-biam-de-cavalo-marinho-t2016.htm','Poseidon',true,'Generais Marina',null,false,'http://img509.imageshack.us/img509/1650/bianfb6.jpg',false));
colecao.appendClothMyth(new ClothMyth('Leo Aiolia','http://img142.imageshack.us/img142/3103/app2leo.png','01/2008','http://www.clothmythbrasil.com/bustos-appendix-f65/imagens-appendix-pack-2-t2471.htm','Athena',false,'Cavaleiros de Ouro','pack 2',true,'http://img401.imageshack.us/img401/8151/aioliabustoxd5.jpg',false));
colecao.appendClothMyth(new ClothMyth('Aries Mu','http://img255.imageshack.us/img255/4168/app2aries.png','01/2008','http://www.clothmythbrasil.com/bustos-appendix-f65/imagens-appendix-pack-2-t2471.htm','Athena',false,'Cavaleiros de Ouro','pack 2',true,'http://img120.imageshack.us/img120/4854/mubustobq4.jpg',false));
colecao.appendClothMyth(new ClothMyth('Special Pack Shion','http://img175.imageshack.us/img175/7564/shionspecial.png','03/2008','http://www.clothmythbrasil.com/shion-sapuris-f82/imagens-shion-sapuris-negra-t2689.htm','Hades',false,'Espectros',null,false,'http://img146.imageshack.us/img146/6965/shionblackad0.jpg',false));
colecao.appendClothMyth(new ClothMyth('Pegaso Gold Seiya','http://img368.imageshack.us/img368/9026/pegasogold.png','03/2008','http://www.clothmythbrasil.com/seiya-de-pegasus-f23/imagens-seiya-v3-gold-t1967.htm','Athena',false,'Cavaleiros de Bronze',null,false,'http://img146.imageshack.us/img146/1760/seiyagoldqp5.jpg',false));
colecao.appendClothMyth(new ClothMyth('Thanatos','http://img61.imageshack.us/img61/1574/thanatos.png','03/2008','http://www.clothmythbrasil.com/thanatos-f230/imagens-thanatos-t2820.htm','Hades',true,'Deuses',null,false,'http://img134.imageshack.us/img134/8018/thanatosed9.jpg',false));
colecao.appendClothMyth(new ClothMyth('Benetnasch Mime','http://img368.imageshack.us/img368/8918/mime.png','04/2008','http://www.clothmythbrasil.com/mime-de-benetnasch-f219/imagens-mime-de-benetnasch-t2709.htm','Odin',true,'Guerreiros deus',null,false,'http://img170.imageshack.us/img170/2730/mimeer2.jpg',false));
colecao.appendClothMyth(new ClothMyth('Scylla Io','http://img408.imageshack.us/img408/1532/12344278.png','05/2008','http://www.clothmythbrasil.com/io-de-scylla-f224/imagens-io-de-scylla-t2676.htm','Poseidon',true,'Generais Marina',null,false,'http://img17.imageshack.us/img17/4136/16122138.jpg',false));
colecao.appendClothMyth(new ClothMyth('Pegaso Kamui Seiya','http://img243.imageshack.us/img243/8044/seiyagod.png','06/2008','http://www.clothmythbrasil.com/seiya-de-pegaso-f226/imagens-seiya-god-t2690.htm','Athena',true,'Cavaleiros de Bronze',null,false,'http://img205.imageshack.us/img205/2408/seiyagodla7.jpg',false));
colecao.appendClothMyth(new ClothMyth('Lymnades Kasa','http://img60.imageshack.us/img60/8536/lymnades.png','08/2008','http://www.clothmythbrasil.com/kasa-de-lymnades-f94/imagens-kasa-de-lymnades-t3610.htm','Poseidon',false,'Generais Marina',null,false,'http://img145.imageshack.us/img145/3862/kazaff3.jpg',false));
colecao.appendClothMyth(new ClothMyth('Poseidon','http://img237.imageshack.us/img237/6189/poseidon.png','09/2008','http://www.clothmythbrasil.com/poseidon-f108/imagens-poseidon-deus-do-mar-t4360.htm','Poseidon',false,'Deuses',null,false,'http://img98.imageshack.us/img98/4505/poseidonn.jpg',false));
colecao.appendClothMyth(new ClothMyth('Poseidon','http://img243.imageshack.us/img243/9520/poseidondx.png','09/2008','http://www.clothmythbrasil.com/poseidon-f108/imagens-poseidon-deus-do-mar-t4360.htm','Poseidon',false,'Deuses',null,false,'http://img511.imageshack.us/img511/9219/poseidondfy6.jpg',false));
colecao.appendClothMyth(new ClothMyth('Fenrir de Alioth','http://img516.imageshack.us/img516/1391/alioth.png','11/2008','http://www.clothmythbrasil.com/fenrir-de-alioth-f111/imagens-fenrir-de-alioth-t4816.htm','Odin',false,'Guerreiros deus',null,false,'http://img511.imageshack.us/img511/465/fenrirom7.jpg',false));
colecao.appendClothMyth(new ClothMyth('Hypnos','http://img171.imageshack.us/img171/8651/hypnos.png','12/2008','http://www.clothmythbrasil.com/hypnos-f112/imagens-hypnos-t4900.htm','Hades',false,'Deuses',null,false,'http://img378.imageshack.us/img378/141/hypnossj3.jpg',false));
colecao.appendClothMyth(new ClothMyth('Shura Sapuris','http://img368.imageshack.us/img368/8729/shurasapuris.png','01/2009','http://www.clothmythbrasil.com/shura-surplice-f113/imagens-shura-surplice-t4921.htm','Hades',false,'Espectros',null,false,'http://img123.imageshack.us/img123/570/shurasapurisqk3.jpg',false));
colecao.appendClothMyth(new ClothMyth('Scorpion Milo','http://img156.imageshack.us/img156/7369/app3scorpion.png','01/2009','http://www.clothmythbrasil.com/bustos-appendix-f65/imagens-appendix-pack-3-t4883.htm','Athena',false,'Cavaleiros de Ouro','pack 3',true,'http://a.imageshack.us/img412/6463/milobusto.jpg',false));
colecao.appendClothMyth(new ClothMyth('Aquarius Camus','http://img142.imageshack.us/img142/4167/app3aquarios.png','02/2009','http://www.clothmythbrasil.com/bustos-appendix-f65/imagens-appendix-pack-3-t4883.htm','Athena',false,'Cavaleiros de Ouro','pack 3',true,'http://img132.imageshack.us/img132/7474/camusbustovm6.jpg',false));
colecao.appendClothMyth(new ClothMyth('Camus Sapuris','http://img264.imageshack.us/img264/6589/camussapuris.png','02/2009','http://www.clothmythbrasil.com/camus-surplice-f114/imagens-camus-surplice-t4920.htm','Hades',false,'Espectros',null,false,'http://img388.imageshack.us/img388/8017/camussapurisgt4.jpg',false));
colecao.appendClothMyth(new ClothMyth('Athena','http://img686.imageshack.us/img686/2074/athenapremium.png','02/2009','http://www.clothmythbrasil.com/athena-f227/imagens-athena-t2691.htm','Athena',false,'Deuses',null,false,'http://img510.imageshack.us/img510/238/athenakc5.jpg',false));
colecao.appendClothMyth(new ClothMyth('Pegaso Kamui Gold Seiya','http://img689.imageshack.us/img689/3797/seiyagodgold.png','03/2009','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/pegaso-divino-dourado-t4750.htm','Athena',false,'Cavaleiros de Bronze','Orinal Color',false,'http://img403.imageshack.us/img403/3633/seiyagodgoldld8.jpg',false));
colecao.appendClothMyth(new ClothMyth('Saga Sapuris','http://img2.imageshack.us/img2/4488/sagaespectro.png','03/2009','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentarios-saga-sapuris-t4858.htm','Hades',false,'Espectros',null,false,'http://img23.imageshack.us/img23/1230/sagasapuris.jpg',false));
colecao.appendClothMyth(new ClothMyth('Saga Original Color','http://img401.imageshack.us/img401/8703/sagaoriginalcolor.png','03/2009','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/appendix-de-gemeos-original-color-t5208.htm','Athena',false,'Cavaleiros de Ouro','Original Color Edition',true,'http://img10.imageshack.us/img10/5824/sagacolor.jpg',false));
colecao.appendClothMyth(new ClothMyth('Seiya de Pégaso','http://img516.imageshack.us/img516/3305/seiyabroken.png','04/2009','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentarios-pegaso-broken-version-t3671.htm','Athena',false,'Cavaleiros de Bronze','Broken',false,'http://img128.imageshack.us/img128/5094/seiyabrokenek5.jpg',false));
colecao.appendClothMyth(new ClothMyth('Alberich de Megrez','http://img365.imageshack.us/img365/2254/megrezk.png','06/2009','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentarios-alberich-de-megrez-t5375.htm','Odin',false,'Guerreiros deus',null,false,'http://img6.imageshack.us/img6/1681/alberichu.jpg',false));
colecao.appendClothMyth(new ClothMyth('Sagitarius Object','http://img22.imageshack.us/img22/6344/sagitarioobject.png','07/2009','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentarios-armadura-de-sagitario-t4629.htm#133647','Athena',false,'Cavaleiros de Ouro',null,false,'http://img123.imageshack.us/img123/4562/sagitariowg7.jpg',true));
colecao.appendClothMyth(new ClothMyth('Andromeda Kamui Shun','http://img148.imageshack.us/img148/3135/shungod.png','07/2009','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentarios-shun-god-t5487.htm','Athena',false,'Cavaleiros de Bronze',null,false,'http://img125.imageshack.us/img125/4930/shungod.jpg',false));
colecao.appendClothMyth(new ClothMyth('Tenma de Pégaso','http://img14.imageshack.us/img14/313/tenma.png','08/2009','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentarios-tenma-de-pegaso-t5440.htm','Athena',false,'Cavaleiros de Bronze',null,false,'http://img16.imageshack.us/img16/9422/tenmap.jpg',false));
colecao.appendClothMyth(new ClothMyth('Phecda Thor','http://img71.imageshack.us/img71/8560/phecda.png','09/2009','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentarios-thor-de-phecda-t5486.htm','Odin',false,'Guerreiros deus',null,false,'http://img207.imageshack.us/img207/7127/thorx.jpg',false));
colecao.appendClothMyth(new ClothMyth('Seiya de Pégaso','http://img512.imageshack.us/img512/1557/pegasooriginalcolor.png','10/2009','http://www.clothmythbrasil.com/discusses-sobre-cms-f196/comentrios-seiya-de-pegasus-v3-mang-t6031.htm#177068','Athena',false,'Cavaleiros de Bronze','Origal Color Edition',false,'http://img93.imageshack.us/img93/9281/seiyaoce.jpg',false));
colecao.appendClothMyth(new ClothMyth('Milo Original Color','http://img29.imageshack.us/img29/9268/milooriginalcolor.png','10/2009','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentarios-appendix-escorpiao-e-virgem-oce-t6050.htm','Athena',false,'Cavaleiros de Ouro','Original Color Edition',true,'http://img110.imageshack.us/img110/1403/milooce.jpg',false));
colecao.appendClothMyth(new ClothMyth('Shaka Original Color','http://img246.imageshack.us/img246/1433/shakaoriginalcolor.png','10/2009','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentarios-appendix-escorpiao-e-virgem-oce-t6050.htm','Athena',false,'Cavaleiros de Ouro','Original Color Edition',true,'http://img136.imageshack.us/img136/9339/shakaoce.jpg',false));
colecao.appendClothMyth(new ClothMyth('Kagaho de Benu','http://img29.imageshack.us/img29/4161/benu.png','11/2009','http://www.clothmythbrasil.com/discusses-sobre-cms-f196/novidade-kagaho-de-benu-t5939.htm','Hades',false,'Espectros',null,false,'http://img386.imageshack.us/img386/7659/kagaho.jpg',false));
colecao.appendClothMyth(new ClothMyth('Pandora Box','http://img15.imageshack.us/img15/1976/pandorabox1.png','11/2009','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/novidade-pandoras-box-oficiais-t6051.htm','Athena',false,'Cavaleiros de Ouro','pack 1',true,'http://a.imageshack.us/img811/7126/box1large.jpg',false));
colecao.appendClothMyth(new ClothMyth('Armadura de Odin','http://img132.imageshack.us/img132/6286/odink.png','12/2009','http://www.clothmythbrasil.com/discusses-sobre-cms-f196/comentriosseiya-com-armadura-de-odin-t6049.htm','Odin',false,null,null,false,'http://img379.imageshack.us/img379/9946/seiyaodin.jpg',false));
colecao.appendClothMyth(new ClothMyth('Alcor Bud','http://img34.imageshack.us/img34/9911/alcor.png','01/2010','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentarios-bado-de-alcor-t5027.htm','Odin',false,'Guerreiros deus',null,false,'http://img269.imageshack.us/img269/7163/budnx.jpg',false));
colecao.appendClothMyth(new ClothMyth('Máscara da Morte Sapuris','http://img94.imageshack.us/img94/7032/deathmasksapuris.png','01/2010','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentarios-mascara-da-morte-surplice-t6393.htm','Hades',false,'Espectros',null,false,'http://img685.imageshack.us/img685/2323/deathmasksapuris.jpg',false));
colecao.appendClothMyth(new ClothMyth('Pandora Box','http://img687.imageshack.us/img687/1668/pandorabox2.png','01/2010','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/novidade-pandoras-box-oficiais-t6051.htm','Athena',false,'Cavaleiros de Ouro','pack 2',true,'http://a.imageshack.us/img138/3627/box2large.jpg',false));
colecao.appendClothMyth(new ClothMyth('Argol de Perseu','http://img136.imageshack.us/img136/2224/perseu.png','02/2010','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentarios-argol-de-perseu-t6442.htm','Athena',false,'Cavaleiros de Prata',null,false,'http://img517.imageshack.us/img517/4306/argolj.jpg',false));
colecao.appendClothMyth(new ClothMyth('Hilda de Polaris','http://img10.imageshack.us/img10/7411/hildak.png','02/2010','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentarios-hilda-de-polaris-t5488.htm','Odin',false,null,null,false,'http://img684.imageshack.us/img684/5447/hildau.jpg',false));
colecao.appendClothMyth(new ClothMyth('Andromeda Kamui Gold Shun','http://img140.imageshack.us/img140/9214/shungodoce.png','03/2010','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentarios-andromeda-divino-oce-t6611.htm#193053','Athena',false,'Cavaleiros de Bronze','Original Color',false,'http://img69.imageshack.us/img69/4092/shungodgold.jpg',false));
colecao.appendClothMyth(new ClothMyth('Pegaso Seiya V2 Gold','http://img706.imageshack.us/img706/9167/pegasov2gold.png','03/2010','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentarios-seiya-de-pegaso-v2-power-of-gold-t6655.htm#194185','Athena',false,'Cavaleiros de Bronze','V2 Gold',false,'http://img137.imageshack.us/img137/7509/seiya2gold.jpg',false));
colecao.appendClothMyth(new ClothMyth('Dragon Kamui Shiryu','http://img246.imageshack.us/img246/729/shiryugod.png','03/2010','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentarios-shiryu-god-t6399.htm','Athena',false,'Cavaleiros de Bronze',null,false,'http://img710.imageshack.us/img710/2881/shiryugod.jpg',false));
colecao.appendClothMyth(new ClothMyth('Misty de Lagarto','http://img340.imageshack.us/img340/3091/lagartoe.png','05/2010','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentarios-misty-de-lagarto-t6441.htm','Athena',false,'Cavaleiros de Prata',null,false,'http://img707.imageshack.us/img707/8920/mistyx.png',false));
colecao.appendClothMyth(new ClothMyth('Pandora Box','http://img717.imageshack.us/img717/2295/pandorabox3.png','05/2010','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/novidade-pandoras-box-oficiais-t6051.htm','Athena',false,'Cavaleiros de Ouro','pack 3',true,'http://a.imageshack.us/img833/5100/box3large.jpg',false));
colecao.appendClothMyth(new ClothMyth('Pegaso Seiya V1','http://img443.imageshack.us/img443/1715/pegasov1.png','06/2010','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentarios-seiya-v1-t6400.htm','Athena',false,'Cavaleiros de Bronze',null,false,'http://img692.imageshack.us/img692/5315/seiyav1.jpg',false));
colecao.appendClothMyth(new ClothMyth('Cisne Kamui Hyoga','http://img144.imageshack.us/img144/5981/hyogagod.png','07/2010','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentarios-hyoga-god-t7280.htm','Athena',false,'Cavaleiros de Bronze',null,false,'http://a.imageshack.us/img832/7827/hyogagod.jpg',false));
colecao.appendClothMyth(new ClothMyth('Appendix Stand Deluxe','http://a.imageshack.us/img704/6737/appendixdx.png','07/2010','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentarios-appendix-stand-dx-t7347.htm',null,false,null,null,true,'http://a.imageshack.us/img831/7926/appendixdx.jpg',false));
colecao.appendClothMyth(new ClothMyth('Dragon Shiryu V2 Gold','http://img143.imageshack.us/img143/6971/dragonv2gold.png','08/2010','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentarios-shiryu-de-dragao-v2-power-of-gold-t7282.htm','Athena',false,'Cavaleiros de Bronze','V2 Gold',false,'http://a.imageshack.us/img208/5290/shiryu2gold.jpg',false));
colecao.appendClothMyth(new ClothMyth('Andrômeda Shun V1','http://a.imageshack.us/img299/2011/andromedav1.png','08/2010','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentariosshun-v1-t7427.htm','Athena',false,'Cavaleiros de Bronze',null,false,'http://a.imageshack.us/img248/9058/shun1t.jpg',false));
colecao.appendClothMyth(new ClothMyth('Fenix Ikki V3','http://a.imageshack.us/img265/1064/fenixv3oce.png','08/2010','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentarios-ikki-de-fenix-v3-oce-t7658.htm','Athena',false,'Cavaleiros de Bronze','Original Color',false,'http://a.imageshack.us/img826/4337/ikkicolor.jpg',false));
colecao.appendClothMyth(new ClothMyth('Dragon Kamui Gold Shiryu ','http://a.imageshack.us/img185/441/shiryugodoce.png','09/2010','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentarios-shiryu-god-oce-t7566.htm','Athena',false,'Cavaleiros de Bronze','Original Color',false,'http://a.imageshack.us/img62/5300/shiryugodoce.jpg',false));
colecao.appendClothMyth(new ClothMyth('Afrodite Sápuris','http://a.imageshack.us/img534/1293/afroditesapuris.png','09/2010','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentariosafrodite-renegado-t7428.htm','Hades',false,'Espectros',null,false,'http://a.imageshack.us/img710/9800/afroditesapuris.jpg',false));
colecao.appendClothMyth(new ClothMyth('Pandora Box','http://a.imageshack.us/img838/2248/pandorabox4.png','10/2010','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/novidade-pandoras-box-oficiais-t6051.htm','Athena',false,'Cavaleiros de Ouro','pack 4',false,'http://a.imageshack.us/img651/7320/box4large.jpg',false));
colecao.appendClothMyth(new ClothMyth('Cisne Hyoga V1','http://a.imageshack.us/img121/698/cisnev1.png','10/2010','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentarios-hyoga-v1-t7685.htm','Athena',false,'Cavaleiros de Bronze',null,false,'http://a.imageshack.us/img189/580/hyoga1.jpg',false));
colecao.appendClothMyth(new ClothMyth('Cisne Hyoga V2 Gold','http://a.imageshack.us/img444/1385/cisnev2gold.png','11/2010','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentarios-hyoga-de-cisne-v2-power-of-gold-t7689.htm','Athena',false,'Cavaleiros de Bronze','V2 Gold',false,'http://a.imageshack.us/img841/9848/hyoga2gold.jpg',false));
colecao.appendClothMyth(new ClothMyth('Dragon Shiryu V1','http://a.imageshack.us/img42/4012/dragonv1.png','11/2010','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentariosshiryu-v1-t7851.htm','Athena',false,'Cavaleiros de Bronze','V1',false,'http://a.imageshack.us/img825/2564/shiryu1.jpg',false));
colecao.appendClothMyth(new ClothMyth('Fenix Kamui Ikki','http://a.imageshack.us/img834/8301/ikkigod.png','12/2010','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentariosshiryu-v1-t7851.htm','Athena',false,'Cavaleiros de Bronze',null,false,'',false));
colecao.appendClothMyth(new ClothMyth('Sagitarius Fake','http://a.imageshack.us/img230/7420/sagitariusfake.png','03/2011','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentarios-armadura-fake-de-sagitario-t7546.htm','Athena',false,'Cavaleiros de Ouro',null,false,'http://a.imageshack.us/img695/9409/sagitariusfake.jpg',false));
colecao.appendClothMyth(new ClothMyth('Pégaso negro','http://a.imageshack.us/img839/7456/pegasonegro.png','13/2011','http://www.clothmythbrasil.com/discussoes-sobre-cms-f196/comentarios-pegaso-negro-t6443.htm','Athena',false,'Cavaleiros de Bronze',null,false,'http://a.imageshack.us/img541/396/pegasonegro.jpg',false));
colecao.sort(sortByData);