﻿/*
 * Custom jQuery fil
 */
 
function reinitialiseScrollPane()
{
	$('.scroll-pane').jScrollPane({dragMinHeight:20, dragMaxHeight:100, scrollbarMargin:30});
}
function addContent(){
	$("#tab-6 .rightcol ul").append('<li><a href="#"><span>&gt;</span>Predikanten / The Preacher</a></li>');
}

$(document).ready(function(){
	$('.scroll-pane').jScrollPane({dragMinHeight:20, dragMaxHeight:100, scrollbarMargin:30});
	
	$('#tab-1 .title a').hover(
	        function () {
	    	    $(this).stop().animate({backgroundColor: "#262626"}, 500);
	    	    }, function () {
	    	    $(this).stop().animate({backgroundColor:"#000000"}, 500);
	        });
	$('#tab-2 .title a').hover(
	        function () {
	    	    $(this).stop().animate({backgroundColor: "#d993b0"}, 500);
	    	    }, function () {
	    	    $(this).stop().animate({backgroundColor:"#ffaed0"}, 500);
	        });
	$('#tab-3 .title a').hover(
	        function () {
	    	    $(this).stop().animate({backgroundColor: "#575757"}, 500);
	    	    }, function () {
	    	    $(this).stop().animate({backgroundColor:"#707173"}, 500);
	        });
	$('#tab-4 .title a').hover(
	        function () {
	    	    $(this).stop().animate({backgroundColor: "#a86f92"}, 500);
	    	    }, function () {
	    	    $(this).stop().animate({backgroundColor:"#bb7ca3"}, 500);
	        });
			
	$('#tab-5 .title a').hover(
	        function () {
	    	    $(this).stop().animate({backgroundColor: "#9c906a"}, 500);
	    	    }, function () {
	    	    $(this).stop().animate({backgroundColor:"#ac9f75"}, 500);
	        });
	$('#tab-6 .title a').hover(
	        function () {
	    	    $(this).stop().animate({backgroundColor: "#c4b890"}, 500);
	    	    }, function () {
	    	    $(this).stop().animate({backgroundColor:"#d2c5a9"}, 500);
	        });
	$('#tab-8 .title a').hover(
	        function () {
	    	    $(this).stop().animate({backgroundColor: "#ababab"}, 500);
	    	    }, function () {
	    	    $(this).stop().animate({backgroundColor:"#c2c2c2"}, 500);
	        });
	$('#tab-7 .title a').hover(
	        function () {
	    	    $(this).stop().animate({backgroundColor: "#c75f7b"}, 500);
	    	    }, function () {
	    	    $(this).stop().animate({backgroundColor:"#d76885"}, 500);
	        });

	
	
});


