/*
 * Common tools, used in many websites.
 * contact@roelkramer.nl
 */
$(document).ready(function() {
    $('.emptyonclick').click(function() {
		/*
		 * Clear the textfield on click.
		 */		
        $(this).val('');
    });
    $('.swapimg').click(function() {
		/*
		 * Change the image in a gallery.
		 * 
		 * Usage: 
		 * IMG list: <div class="swapimg" rel="{{ object.get_thumbnail_url }}">1</div>
		 * Target: <a href="" id="swapimg_target_link">
		 * <img src="{{ object.picture.get_thumbnail_url }}" id="swapimg_target" width="200"/></a>
		 */
		rel = $(this).attr('rel');
		rel_disp = $(this).attr('rel_disp');
		$('#swapimg_target').attr({src: rel});
		$('#swapimg_target_link').attr({href: rel_disp}); // dit is ook de thumb. maak hier display van.
	    Shadowbox.setup("a.showproduct");
        
    });
   
});

