$(document).ready(function(){

	c = 0;
	$('.product-box-image').each(function(){
		$(this).find('a').attr('rel','shadowbox[gallery'+c+'];player=img');
		$(this).find('a:first').attr('title',$(this).parents('.product-box').find('h2').text());
		c++;
	});
	
	$('.csc-textpic-imagewrap a img').each(function(){
		var p = $(this).parent();
		p.attr('rel','shadowbox[gallery1];player=img');
	});
	
	Shadowbox.init({ language: "de-DE", players: ['img'] }); 
		
});
