window.switcher = {
	target: "#pic",
	imgdir: "images/gallery/",
	images: [
		"01.jpg",
		"02.jpg",
		"03.jpg",
		"04.jpg",
		"05.jpg",
		"06.jpg",
		"07.jpg",
		"08.jpg",
		"09.jpg",
		"10.jpg",
		"11.jpg",
		"12.jpg",
		"13.jpg",
		"14.jpg",
		"15.jpg",
		"16.jpg",
		"17.jpg",
		"18.jpg",
		"19.jpg",
		"20.jpg",
		"21.jpg",
		"22.jpg",
		"23.jpg",
		"24.jpg",
		"25.jpg",
		"26.jpg",
		"27.jpg",
		"28.jpg",
		"29.jpg",
		"30.jpg",
		"31.jpg",
		"32.jpg",
		"33.jpg",
		"34.jpg",
		"35.jpg",
		"36.jpg",
		"37.jpg",
		"38.jpg",
		"39.jpg",
		"40.jpg",
		"41.jpg",
		"42.jpg",
		"43.jpg",
		"44.jpg",
		"45.jpg",
		"46.jpg",
		"47.jpg",
		"48.jpg",
		"49.jpg",
		"50.jpg",
		"51.jpg",
		"52.jpg",
		"53.jpg",
		"54.jpg",
		"55.jpg",
		"56.jpg",
		"57.jpg",
		"58.jpg",
		"49.jpg"
	],
	current: 0,
	init: function(){
		$(this.target).bind("click",switcher.next);
	},
	next: function(){
		if (switcher.current >= switcher.images.length-1) {
			switcher.current = 0;
		} else {
			switcher.current++;
		}
		var url = switcher.imgdir+switcher.images[switcher.current];
		$(switcher.target).fadeOut(100,function(){
			$(switcher.target).attr("src",url);
			$(switcher.target).fadeIn(100);
		});
	}
}

$(document).ready(function(){
	/*
	// This is the old tooltip-activation routine
	$(".tooltip").tooltip({
		track: true,
		fade: 150,
		fixPNG: true
	});
	*/
	switcher.init();
	
	
	// new hover-behaviour
	$('#hoverage').mouseover(function(){
		$('#hoverbox').show();
	});
	$('#hoverage').mouseout(function(){
		$('#hoverbox').hide();
	});
});
