$(document).ready(function() {
	
	//////////////////////////////////////////////////////////////////////
	if(jQuery().jScrollPane)		
		$('#eidikaerga').jScrollPane();
	
	var scrollWin = function (selector) {
		$('html, body').animate({
			scrollTop: $(selector).offset().top-10
		}, 1000);
    }
     
    $("[href^=#]").click(function(e) {
		scrollWin ($(this).attr("href"));
		return false;
    });	
	
	$(".next").click(function(){
		page = $(this).parent().children('.photos').attr('lang');
		now = $(this).attr('lang');
		max_ = $(this).parent().children('.photos').children('img').size();
		$("."+now).children('.photos').children('img').each(function(){
			$(this).hide();
		});
		
		$("."+now).children('.photos').children('img.c'+(parseInt(page)+1)).show();
		if((parseInt(page)+1) >= max_)
			$(this).parent().children('.photos').attr('lang',0);
		else
			$(this).parent().children('.photos').attr('lang',(parseInt(page)+1));

		return false;	
	})
});
