﻿<!--

function getTplPrice(id)
  {
   var price = new Array();
   
   $('#tplprice' + id + ' p').each(function(){
   
    price[price.length] = String($(this).html()).split('=')[1];
   
   });
   
   if (price.length >= 1)
    $('#a98').html(price[0]);

   if (price.length >= 2)
    $('#a95').html(price[1]);
   
   if (price.length >= 3) 
    $('#a92').html(price[2]);
    
   if (price.length >= 4)
    $('#a80').html(price[3]);
   
   if (price.length = 5)
    $('#dt').html(price[4]);
   
   if (id == 0)
   {
    $('#vil a').css({'background-image':'url(/Themes/WO/img/redBul.jpg)', 'color':'#FFFFFF'});
    $('#rib a').css({'background-image':'url(/Themes/WO/img/greyBul.jpg)', 'color':'#98BBE5'});
   }

   if (id == 1)
   {
    $('#vil a').css({'background-image':'url(/Themes/WO/img/greyBul.jpg)', 'color':'#98BBE5'});
    $('#rib a').css({'background-image':'url(/Themes/WO/img/redBul.jpg)', 'color':'#FFFFFF'});
   }
   
   /*
   greyBul.jpg
   redBul.jpg
   */
   
  }

$(document).ready(function(){
 getTplPrice(0);

 /*IE PNG FIX*/
  if ($.browser.msie && $.browser.version < 7) {
    DD_belatedPNG.fix('.iePNG, .litr img, .bigLogo img');
  }

});
-->
