/* BON JOVI */
/* Featued Merchandise
----------------------------------------------------------------------------- */


	$(window).load(function() {

		$('#merchandise').each(function() {

			var $items = $(this).find('ul.items');
	
			$.get('/feeds/external/featured_merchandise.xml', function(data) {
			
				$(data).find('Product').each(function(index) { 
	
					if (index == 3) {
						return false;
					}
	
					var thumbnail = $(this).children('PhotoURL').text();
					var name = $(this).children('ProductName').text();
					var price = '$' + $(this).children('ProductPrice').text().slice(0,5);
					var link = 'https://www.bonjovionline.com/ProductDetails.asp?ProductCode=' + $(this).children('ProductCode').text();
		
					$('<li><a href="' + link + '"><img src="' + thumbnail + '" alt="' + name + '" /></a><dl><dt><a href="' + link + '">' + name + '</a></dt><dt>' + price + '</dt></dl></li>').appendTo($items);
	
				});

				$('#merchandise').addClass('loaded');
				if (typeof(window['Cufon']) != "undefined") Cufon.refresh();
										
			});
			
		});

	});