/* Body onLoad */
$(document).ready(function () {	
	$("#thumb_container_1 a img, #thumb_container_2 a img")
		.css({'opacity': '0.5'})
		.hover(function () {
				$(this)
					.stop()
					.fadeTo('normal', 1);
			}, 
			function () {
				$(this)
					.stop()
					.fadeTo('fast', 0.5);
			}
		);

	$("#main_container.Startseite #main_wrapper a")
		.removeClass("start_pics")
		.hover(function () {
				$(this).find('img.not_hover')
					.stop()
					.fadeTo('normal', 0);
			},
			function () {
				$(this).find('img.not_hover')
					.stop()
					.fadeTo('normal', 1);
			}
		);
});
