$(document).ready(function(){ 
						   
	//alert("geladen");
	
	/* Hauptmenü */	
    $("img.naviPic").mouseover(function() {
		if ($(this).hasClass("activeSection") == false) {
			var normPic = $(this).attr("src");
			var normPicSplit = normPic.split(".jpg");
			var overPic = normPicSplit[0]+"_over.jpg";
			$(this).attr("src",overPic);
		}
	});
	$("img.naviPic").mouseout(function() {
		if ($(this).hasClass("activeSection") == false) {
			var overPic = $(this).attr("src");
			var overPicSplit = overPic.split("_over.jpg");
			var normPic = overPicSplit[0]+".jpg";
			$(this).attr("src",normPic);
		}
	});
	
	/* Scrollbereich */
	$('.scroll-pane').jScrollPane({showArrows:true, scrollbarWidth: 8, arrowSize: 16, wheelSpeed: 10});
	
});