// JavaScript Document

$(function() {

	// Slide Effekt Module Links
	$('.module h3').mouseover(function(){
		$(this).css("cursor","pointer");
	});
																		 
	$('.module h3').click(function(){
		$(this).stop().next().slideToggle(1000);
	});
	
	// Bilder Opacity Effekt
	$('p a img').hover(function() {
		$(this).stop().animate({ "opacity":0.5 });		
	}, function() {
		$(this).stop().animate({ "opacity":1 });
	});
	
}); // end function
