$j(document).ready(function() {
   $j("ul#header_carousel li div.carousel_offer").each(function(i){
	   $offer_title=$j(this).find('span.offer_title a').html();
	   $offer_url=$j(this).find('span.offer_title a').attr('href').replace(/&/gi,'#');
	   $offer_img=$j(this).find('img').attr('src').replace(/&/gi,'#');
	   $offer_price=$j(this).find('img').attr('class').replace('offer-'+$offer_title+"-",'');
	   var so2 = new SWFObject($app_url+"themed/nww/swf/scrolling_offer.swf", "scrolling_offer", "166", "130", "8", "");
	   so2.addVariable("offer_title", $offer_title);
	   so2.addVariable("offer_img", $offer_img);
	   so2.addVariable("offer_url", $offer_url);
	   so2.addVariable("offer_price", $offer_price);
	   so2.addParam("wmode", "transparent");
	   so2.write(this);
   });
});

   