jQuery.noConflict();

jQuery(document).ready(function($){
	
	if(jQuery.browser.msie){
		$("#contentWrapper").corner("10px");	
	}
	
	$("#beleza").live("click",function(event){
		$.post("content/beleza.php",
			function(data){
				$("#inhalt").html(data);
			}
		);
		event.preventDefault();         
	});
	$("#ueberUns").live("click",function(event){
		$.post("content/ueberUns.php",
			function(data){
				$("#inhalt").html(data);
			}
		);
		event.preventDefault();         
	});
	$("#repertoir").live("click",function(event){
		$.post("content/repertoir.php",
			function(data){
				$("#inhalt").html(data);
			}
		);
		event.preventDefault();         
	});
	$("#termine").live("click",function(event){
		$.post("content/termine.php",
			function(data){
				$("#inhalt").html(data);
			}
		);
		event.preventDefault();         
	});
	$("#bilder").live("click",function(event){
		$.post("content/bilder.php",
			function(data){
				$("#inhalt").html(data);
			}
		);
		event.preventDefault();         
	}); 
		$("#bilderQuartett").live("click",function(event){
			$.post("content/bilderQuartett.php",
				function(data){
					$("#inhalt").html(data);
				}
			);
			event.preventDefault();         
		}); 
		$("#schlotterbeck").live("click",function(event){
			$.post("content/bilderSchlotterbeck.php",
				function(data){
					$("#inhalt").html(data);
				}
			);
			event.preventDefault();         
		}); 
		$("#video").live("click",function(event){
			$.post("content/video.php",
				function(data){
					$("#inhalt").html(data);
				}
			);
			event.preventDefault();         
		}); 
	
	$("#faq").live("click",function(event){
		$.post("content/faq.php",
			function(data){
				$("#inhalt").html(data);
			}
		);
		event.preventDefault();         
	});
	$("#kontakt").live("click",function(event){
		$.post("content/kontakt.php",
			function(data){
				$("#inhalt").html(data);
			}
		);
		event.preventDefault();         
	}); 
	$("#impressum").live("click",function(event){
		$.post("content/impressum.php",
			function(data){
				$("#inhalt").html(data);
			}
		);
		
		
		scrollUp();
		
		
		event.preventDefault();         
	}); 
	
});
