$(function(){

	$(".productData a.plaatjeLink").click(function(e){
		e.preventDefault();
		
		// Huidige foto en prettyfien 
		var currentUrl = $(this).attr('href');
		var fotoset = [currentUrl];

		// Do AJAX call		
		$.ajax({
			url			: "/groep/images/"+$(this).data('artnr'),
			dataType	: "json",
			timeout		: 800,
			success		: function(morefotos){
				$(this).prettyPhoto();
				if(typeof(morefotos) !== 'undefined'){
					fotoset = $.merge(fotoset, morefotos);
				}
				$.prettyPhoto.open(fotoset);
			},
			error		: function(jqXHR, textStatus, errorThrown){
				$(this).prettyPhoto();
				$.prettyPhoto.open(fotoset);
			}
		});
		return false;
	});
	
	$("a.plaatjeLink").rollOver();
	
	$(".productData").tablesorter({headers: {2: {sorter: "stock"}, 3: {sorter: "mycurrency"}, 4: {sorter: false}}, widgets: ["zebra"], widgetZebra: {css: ["lijst odd", "lijst even"]}});
	
});
