$.extend({ webstreamProductSpecial: function () { $.post($('#site_home').val()+'jsonSpecial.pl',undefined,function (a,b,c) { if (b === 'success') { var ref = JSON.parse(a); if (ref.length === 0) { return; } ref = ref[0]; $('#prodSpecialName').text(ref['title']); $('#prodSpecialPrice').text(ref['price']); var tmp = $('#prodSpecialLink'); tmp.find('a:first').attr({href: $('#site_home').val()+ref['path'].substr(2)}); tmp.find('img:first').attr({src: $('#site_home').val()+'images/products/small/'+ref['image']}); } }); } }); $(document).ready(function () { var url = $('#site_home').val(); url += 'ajaxFeature.pl'; $('#prodFeature').load(url+' #ajaxFeature',{path: $('#site_home').val()}); $.webstreamProductSpecial(); $('#search_manufacturer').change(function () { var chosen = $(this).find('option:selected'); if ($(chosen).val() !== '0') { window.open($('#site_home').val()+'search.pl?manufacturer='+$(chosen).text(),'_self'); } }); $('#prodSpecial').everyTime('3s',function () { $.webstreamProductSpecial(); }); });