var Gnah_data = [ {"nom7bit": "Parka Style", "id": "1886", "nom": "Parka Style", "items": [{ "type" : "Parka", "marque" : "H&M" }, { "type" : "Jeans", "marque" : "Nudie" }, { "type" : "Sneakers", "marque" : "Vans" }, { "type" : "Shirt", "marque" : "La Redoute" }, { "type" : "Gilet", "marque" : "H&M" }] }, 
{"nom7bit": "Bucheron", "id": "1887", "nom": "Bucheron", "items": [{ "type" : "Shirt", "marque" : "H&M" }, { "type" : "Jeans", "marque" : "Lee" }, { "type" : "Sneakers", "marque" : "Vans" }, { "type" : "Bonnet", "marque" : "H&M" }] }, 
{"nom7bit": "Street wear", "id": "1888", "nom": "Street wear", "items": [{ "type" : "Bonnet", "marque" : "H&M" }, { "type" : "Sweater", "marque" : "Yesstyle" }, { "type" : "Jeans", "marque" : "Nudie" }, { "type" : "Sneakers", "marque" : "Supra" }, { "type" : "", "marque" : "Eastpak" }] }, 
{"nom7bit": "Decontract", "id": "1889", "nom": "Decontract", "items": [{ "type" : "Bonnet", "marque" : "H&M" }, { "type" : "Sweater", "marque" : "La Redoute" }, { "type" : "Jeans", "marque" : "Lee" }, { "type" : "Sneakers", "marque" : "Vans" }] }, 
{"nom7bit": "At Home", "id": "2055", "nom": "At Home", "items": [{ "type" : "T-shirt", "marque" : "H&M" }, { "type" : "Jeans", "marque" : "Nudie" }, { "type" : "", "marque" : "Dame Nature" }] }, 
{"nom7bit": "boyzn hood ", "id": "2067", "nom": "boyz'n hood ", "items": [{ "type" : "Sweater", "marque" : "Yesstyle" }, { "type" : "Pants", "marque" : "H&M" }, { "type" : "Sneakers", "marque" : "Vans" }, { "type" : "Bonnet", "marque" : "H&M" }] }, 
{"nom7bit": "Le printemps arrive enfin", "id": "2084", "nom": "Le printemps arrive enfin", "items": [{ "type" : "T-shirt", "marque" : "Gap" }, { "type" : "Jeans", "marque" : "Nudie" }, { "type" : "Sneakers", "marque" : "Vans" }] }, 
{"nom7bit": "Boyzn hood II", "id": "2094", "nom": "Boyz'n hood II", "items": [{ "type" : "Sweater", "marque" : "Yesstyle" }, { "type" : "Jeans", "marque" : "La Redoute" }, { "type" : "Sneakers", "marque" : "Supra" }, { "type" : "Back bag", "marque" : "Eastpak" }] }, 
{"nom7bit": "low cost powa", "id": "2124", "nom": "low cost powa", "items": [{ "type" : "T-shirt", "marque" : "La Redoute" }, { "type" : "Jeans", "marque" : "Nudie" }, { "type" : "Sneakers", "marque" : "Carrefour" }, { "type" : "Bonnet", "marque" : "H&M" }] }, 
{"nom7bit": "Doraemon o", "id": "2139", "nom": "Doraemon :o", "items": [{ "type" : "Bonnet", "marque" : "H&M" }, { "type" : "Sweater", "marque" : "Yesstyle" }, { "type" : "Jeans", "marque" : "Nudie" }, { "type" : "Tennis", "marque" : "Carrefour" }] }, 
{"nom7bit": "Humm Casual", "id": "2154", "nom": "Humm Casual", "items": [{ "type" : "Scarf", "marque" : "Krama" }, { "type" : "Shirt", "marque" : "La Redoute" }, { "type" : "Pants", "marque" : "H&M" }, { "type" : "Tennis", "marque" : "Carrefour" }] }, 
{"nom7bit": "skeleton legs", "id": "2374", "nom": "skeleton legs", "items": [{ "type" : "Bonnet", "marque" : "H&M" }, { "type" : "T-shirt", "marque" : "H&M" }, { "type" : "Jeans", "marque" : "Nudie" }, { "type" : "Tennis", "marque" : "Carrefour" }] }, 
{"nom7bit": "shoeless", "id": "2589", "nom": "shoeless", "items": [] }];

var Gnah_tofindex = 7;

function Gnah_updatetof() {
  var tag = document.getElementById('look_Gnah');
  var dbgstr = Gnah_tofindex + "\n" + tag.src + "\n";
  var new_src = 'http://www.cloziz.com/look/thumb/lookid/' + Gnah_data[Gnah_tofindex].id;
  var new_link = 'http://www.cloziz.com/look/show/lookid/' + Gnah_data[Gnah_tofindex].id;
  if (tag) {
    tag.setAttribute("src", new_src);
    tag.setAttribute("alt", Gnah_data[Gnah_tofindex].nom);
  }
  dbgstr += tag.src + "\n";
  tag = document.getElementById('nomlook_Gnah');
  if (tag) {
    tag.innerHTML = Gnah_data[Gnah_tofindex].nom;
    tag.href = new_link;
  }
  tag = document.getElementById('detaillook_Gnah');
  if (tag) {
    var items = Gnah_data[Gnah_tofindex].items;
    tag.innerHTML = "";
    for(var i=0; i<items.length; i++) {
      tag.innerHTML += '<li style="display: inline;">';
      tag.innerHTML += items[i].type + " : " + items[i].marque;
      if(i<items.length-1)
        tag.innerHTML += ',';
      tag.innerHTML += "</li>  ";
    }
  }
  tag = document.getElementById('link1_Gnah');
  if (tag) tag.href = new_link;
  tag = document.getElementById('link2_Gnah');
  if (tag) tag.href = new_link;
  return true;
}

function Gnah_nexttof() {
  Gnah_tofindex++;
  if(Gnah_tofindex == Gnah_data.length)
    Gnah_tofindex = 0;
  return Gnah_updatetof();
}

function Gnah_prevtof() {
  if(Gnah_tofindex==0)
    Gnah_tofindex = Gnah_data.length;
  Gnah_tofindex--;
  return Gnah_updatetof();
}

document.write('<div style="margin: 0 auto; width: 230px; font-family: Arial, sans-serif;">');
document.write('<div style="height: 40px; margin: 0 5px; background: url(http://www.cloziz.com/images/widget/widget_top_bg-left.gif) left top no-repeat;">');
document.write('<div style="height: 40px; margin: 0 auto; background: url(http://www.cloziz.com/images/widget/widget_top_bg-right.gif) right top no-repeat;">');
document.write('<div style="padding: 2px 0 0 5px;">');
document.write('<a href="http://www.cloziz.com">');
document.write('<img style="border: 0; padding: 0;" src="http://www.cloziz.com/images/widget/widget_top_clozizlogo.gif" alt="" /></a>');
document.write('</div></div></div>');

document.write('<div style="margin: 0 5px; padding: 0 10px; background: url(http://www.cloziz.com/images/widget/widget_mid_bg_top.gif) repeat-x bottom #C5C5C5;">'); // mid mcontent
document.write('<div style="height: 5px; background: url(http://www.cloziz.com/images/widget/widget_mid_content_top_bg-left.gif) left bottom no-repeat;">'); // content-top left
document.write('<div style="height: 5px; background: url(http://www.cloziz.com/images/widget/widget_mid_content_top_bg-right.gif) right bottom no-repeat;">'); // content-top right
document.write('</div></div>');
document.write('<div style="padding: 3px 0 6px 0; background: #fff; text-align: center;">'); // content
document.write('<div>'); // photo
document.write('<a target="_blank" id="link1_Gnah" href="http://www.cloziz.com/Gnah/look/Parka+Style"><img id="look_Gnah" alt="Parka Style" style="border: 1px solid #313131; padding: 0; margin: 0;" src="http://www.cloziz.com/look/thumb/lookid/1886" /></a>\n');
document.write('</div>');
document.write('</div>');
document.write('</div>');
document.write('<div style="width: 100%; height: 60px;">'); //mid nav
document.write('<div style="float: left; width: 25px; height: 60px;">');  // nav previous
document.write('<a href="#" onClick="Gnah_prevtof(); return false;">');
document.write('<img style="margin: 0; padding: 0; width: 25px; height: 60px; border: 0; background: url(http://www.cloziz.com/images/widget/widget_mid_nav_prev.gif) top no-repeat;" src="http://www.cloziz.com/images/widget/void.gif" alt="previous" onmouseover="style.backgroundPosition=\'bottom\'" onmouseout="style.backgroundPosition=\'top\'">');
document.write('</a>');
document.write('</div>');
document.write('<div style="float: right; width: 25px; height: 60px;">'); // nav next
document.write('<a href="#" onClick="Gnah_nexttof(); return false;">');
document.write('<img style="margin: 0; padding: 0; width: 25px; height: 60px; border: 0; background: url(http://www.cloziz.com/images/widget/widget_mid_nav_next.gif) top no-repeat;" src="http://www.cloziz.com/images/widget/void.gif" alt="next" onmouseover="style.background=\'url(http://www.cloziz.com/images/widget/widget_mid_nav_next.gif) bottom no-repeat;\'" onmouseout="style.background=\'url(http://www.cloziz.com/images/widget/widget_mid_nav_next.gif) top no-repeat;\'">');
document.write('</a>');
document.write('</div>');

document.write('<div style="margin: 0 25px; padding: 0 1px; text-align: center; background: #fff;">'); // lookdata
document.write('<h1 style="margin: 0; padding: 0; border: 0; height: 18px; font-size: 14px; font-weight: bold;">');
document.write('<a style="color: #d0517e; text-decoration: none;" href="#" id="nomlook_Gnah" onmouseover="style.color=\'#910134\'" onmouseout="style.color=\'#d0517e\'">Nomdulook</a>');
document.write('</h1>');
document.write('<ul style="margin: 0; padding: 0 10px; height: 42px; list-style: none; text-align: center; line-height: 10px; overflow: hidden; font-size: 10px; color: #000;" id="detaillook_Gnah">');
document.write('<li>detail</li>');
document.write('</ul>');
document.write('</div>');
document.write('</div>');
document.write('<div style="clear: both;">'); // clear
document.write('</div>');
document.write('<div style="margin: 0 5px; padding: 0 10px; height: 20px; background: url(http://www.cloziz.com/images/widget/widget_mid_bg_btm.gif) repeat-x top #C5C5C5;">'); // mid links
document.write('<div style="padding: 2px 10px 0 10px; background: #fff; line-height: 16px; text-align: right;">'); // links
document.write('<a href="http://www.cloziz.com" style="font-size: 10px; text-decoration: none; color: #910134;" onmouseover="style.color=\'#5d0122\'" onmouseout="style.color=\'#910134\'" id="link2_Gnah">Le reste sur cloziz.com</a>');
document.write('</div>');
document.write('<div style="height: 5px; font-size: 0px; background: url(http://www.cloziz.com/images/widget/widget_mid_content_btm_bg-left.gif) left top no-repeat;">'); // content-btm left
document.write('<div style="height: 5px; font-size: 0px; background: url(http://www.cloziz.com/images/widget/widget_mid_content_btm_bg-right.gif) right top no-repeat;">'); // content-btm right
document.write('</div>');
document.write('</div>');
document.write('</div>');
document.write('<div style="margin: 0 auto; height: 10px; font-size: 0px;">'); // wbtm
document.write('<div style="margin: 0 5px; height: 10px; background: url(http://www.cloziz.com/images/widget/widget_btm_bg-left.gif) left top no-repeat;">'); // wbtm bleft
document.write('<div style="height: 10px; background: url(http://www.cloziz.com/images/widget/widget_btm_bg-right.gif) right top no-repeat;">'); // wbtm bright
document.write('</div>');
document.write('</div>');
document.write('</div>');

document.write('</div>');

Gnah_updatetof();


