﻿

<!--

$(document).ready(function() {
if($('#polecBox').length>0){ 
    $("#polecBox").ajaxSubmit({
        dataType: 'json',
        type: 'post',
        url: '/tematyczne/car_audio/rekomendowane',
        beforeSubmit: function() {
        },
        success: function(re,st) {    
             var el1 = re[0];
             var el2 = re[1];
             var el3 = re[2];
             
             $("#navTabs ul.tabs li").html(el2.cprb_name);
             $("#navTabs ul.tabs li.first").html(el1.cprb_name);
             $("#navTabs ul.tabs li.last").html(el3.cprb_name);
             $("#polecBox").attr("title","");
             $("#polecBox2").attr("title","");
             $("#polecBox3").attr("title","");
          
        }
      
    });
    
    } 
else{ }
    
});
//-->

