$(document).ready(function(){
	
	
	$('#menu a').mouseenter(function(){
		$(this).stop().animate({opacity:0.6},100);
	});
	$('#menu a').mouseleave(function(){
		$(this).stop().animate({opacity:1},100);
	});
	
	
	count = $('#hartenkretenSlider p').size();
	speed = 1200;
	delay = 5000;
	x = Math.round(Math.random() * count );
	function hartenkretenSlider(){
		
		$('#hartenkretenSlider p[rel="'+x+'"]').animate({marginLeft:0},speed);
		$('#hartenkretenSlider p[rel="'+x+'"]').delay(delay).animate({marginLeft:500},speed);	
		$('#hartenkretenSlider p[rel="'+x+'"]').animate({marginLeft:-500},0);	
		
		if(x == count){ x= 0; }
		x= x+1;
		
		
	}
	setInterval(function(){
		
		
	hartenkretenSlider();
	
		
	},(speed*1)+delay);
	
	hartenkretenSlider();
});
