﻿$(document).ready(function(){



    // Iframe integration URL, to file which construct link to iFrame

    var sIntegrationUrl = 'http://www.menuturas.lt/novaturas/';

    // TradeDoubler ID. Leave empty if You don't have it

    var sTDUID = "";



    // DIV ID - container for offers

    var sDivBestOffers4CountryId = 'contentItems';



    // Function to dynamicly form offer list

    var addBestOffers4CountryLine = function(sDivBestOffers4CountryId, oOfferInfo)   {



        // Link to open selected offer

        var sLink = sIntegrationUrl+oOfferInfo.Country_code+oOfferInfo.City_code;



        // Adding TDUID

        if (sTDUID && sTDUID!='')   {

                sLink = sLink + '&search[s_tduid]=' + sTDUID;

        }



        // Offer line

        var sHtml = '<div class="contentItemBlock">'

                           +'    <div class="contentItemLeft"><a href="'+sLink+'"><span class="strongText">'+oOfferInfo.Country+'</span>'+(oOfferInfo.City && oOfferInfo.City!=oOfferInfo.Country ? ', '+oOfferInfo.City : '')+'</a></div>'

                           +'<div class="contentItemRight">nuo '+oOfferInfo.Price+' Lt</div>'

                           +'<div class="contentItemClear"></div>'

                           +'</div>';

        $(sHtml).appendTo("#"+sDivBestOffers4CountryId);

    }



    // If got info from Novaturas JSON feed

    if (best_offers_for_country)    {

        $(best_offers_for_country).each(function(index, domEle){

            addBestOffers4CountryLine(sDivBestOffers4CountryId, domEle);

            });

        }



    var sHtml = '<div id="externalBlockView1FooterLogo"><img src="http://www.novaturas.lt/iframe/public/images_external/logo_novaturas.png" width="87" height="17" alt="" /><br /></div>';

    $(sHtml).appendTo("#"+sDivBestOffers4CountryId);

});
