$(document).ready(function(){
	buildUp();
	$(".thumbs a").fancybox({
		'speedIn'		:	300, 
		'speedOut'		:	200, 
		'overlayShow'	:	false,
		'hideOnOverlayClick'	:	true
	});
	
	$("#chart a").fancybox();

	
});


function buildUp(){
	$('.product .info p a').each(function(i){
		$(this).appendTo($('.thumbs'));
	});
	$('.product .info p:eq(0)').remove();
	
	$('.product .info p').each(function(){
      var htmlStr = $(this).html();
	  var newHtmlStr = htmlStr.replace(/\xbb/g, '<span class="bolder">&raquo;</span>');
	  $('<p>' +newHtmlStr+ '</p>').insertAfter(this);
      $(this).remove();
	});

	$("p:contains('Price: ')").addClass('price');
	$('.product .info #pricespan').appendTo($('.price'));
	$('.product .product_shirt .thumbs a:first-child img').clone().prependTo('.shirt');
	
	$('#chart').insertBefore('.price');

	var x = 1;
	$('#shopcontent .productpreview').each(function(i){
		if (x == 4){
		 $(this).css('margin-right', 0);
		 x = 0;
		}
		x++;
				
	})
	
}
