$(document).ready(function() {
	// do stuff when DOM is ready
	/*$("a#first").click(function(){
		$("div#stuff").fadeOut('slow');
	});*/
	
	
		/*$("body").hide().fadeIn('slow');*/
	
	/*$("div#col3_content").hide().fadeIn(1000);
	$("ul#fadein").hide().fadeIn(1000);*/
	
	/*$("ul li ul#fadein li a, ul li ul#fadein li#li_active, ul li ul#fadein li#li_active a").colorBlend([{fromColor:"white", toColor:"#949961", param:"color", cycles:"1", fps:"10", isFade:false}]);*/
	
	
	
	$("div#box_right").hide().fadeIn(300);
	$("ul#fadein").hide().fadeIn(300);
	
	
	
	
	
	$("img#thumb01").click(function(){ //wenn das img mit ID thumb01 geklickt wird, werden alle DIVs im DIV#wechsel versteckt (hide) und DIV#01 eingefadet 
		$("div#wechsel div").hide(); 
		$("div#01").fadeIn(300);
		
	});
	
	$("img#thumb02").click(function(){
		$("div#wechsel div").hide();
		$("div#02").fadeIn(300);
	});
	
	$("img#thumb03").click(function(){
		$("div#wechsel div").hide();
		$("div#03").fadeIn(300);
	});
	
	$("img#thumb04").click(function(){
		$("div#wechsel div").hide();
		$("div#04").fadeIn(300);
	});
	
	$("img#thumb05").click(function(){
		$("div#wechsel div").hide();
		$("div#05").fadeIn(300);
	});
	
	$("img#thumb06").click(function(){
		$("div#wechsel div").hide();
		$("div#06").fadeIn(300);
	});
	
	$("img#thumb07").click(function(){
		$("div#wechsel div").hide();
		$("div#07").fadeIn(300);
	});
	
	$("img#thumb08").click(function(){
		$("div#wechsel div").hide();
		$("div#08").fadeIn(300);
	});
	
	
	$("p#info").click(function(){
		$("div#wechsel div").hide();
		$("div#inform").fadeIn(500);
	});
	
	
	
	
});
