$(document).ready(function() {

	// show - hide the info text
	$('.info').click(function() {
		$('.infotext').slideToggle(500);
		return false;
	});
	
	// image navigation: prev - next
	$('.csc-textpic').each(function() {
		var parent = $(this);
		var count = $(this).find('img').size();
		var index = 1;
		
		parent.find('.csc-textpic-imagerow:not(:first)').hide(0);
		
		$(this).find('.next').click(function() {
			index++;
			
			if(index > count) {
				index = 1;
			}
			
			parent.find('.csc-textpic-imagerow:visible').hide(0);
			parent.find('.csc-textpic-imagerow:nth-child(' + index + ')').show(0);
			return false;
		});
		
		$(this).find('.prev').click(function() {
			index--;
			
			if(index == 0) {
				index = count;
			}
			
			parent.find('.csc-textpic-imagerow:visible').hide(0);
			parent.find('.csc-textpic-imagerow:nth-child(' + index + ')').show(0);
			return false;
		});
	});
});
