$(document).ready(function(){
	
	$( function() {
	    $.vegas({
	    	src:'./images/background.jpg',
	    	fade:2000
	    });
	});
	
	
	$("#navi li").not("#navi li:first").click(function(){
		var quelle = $(this).attr("title") + ".php";
	 	$("#text_inhalt").load(quelle);		
	});
	
	$("#navi li:first").click(function(){
		$("#text_inhalt").load("index.php? #text_inhalt div");
		
	});
	
	
	
	$("li").hover(
	  function () {
	    $(this).stop().animate({
		    width: "100%",
		    opacity: 0.7,
		  }, 300 );
		  $(this).css("cursor","pointer");
	    ;
	  }, 
	  function () {
	    $(this).stop().animate({
		    width: "100%",
		    opacity: 1,
		  }, 300 );
	    ;
	  }
	);

	
	
});

