$(document)
		.ready(
				function() {
					$('.kwicks').kwicks( {
						max : 400,
						spacing : 5,
						defaultKwick : 0,
						sticky : true
					});

					$('.kwicks a').hover(function() {
						$(this).css( {
							'background-color' : '#316daf',
						});
						$(this).animate( {
							'background-color' : '#619ddf',
							'font-size' : '21px'							
						}, 100);
					}, function() {
						$(this).animate( {
							'background-color' : '#316daf',
							'font-size' : '12px'
						}, 100);
					});					

					$('.knop a').hover(function() {
                                                $(this).css( {
                                                        'background-color' : '#cdcdcd',
                                                        'color' : '#316daf'
                                                });
                                                $(this).animate( {
                                                        'background-color' : '#316daf',
                                                        'color' : 'white'
                                                }, 100);						
                                        }, function() {
                                                $(this).animate( {
                                                        'background-color' : '#cdcdcd',
                                                        'color' : '#316daf',                                                      
                                                        'font-size' : '12px'
                                                }, 100);
                                        });

					$('h1#header').replaceWith('<h1 id="slider"><img src="fileadmin/templates/2011/style/img/header1.jpg" alt="" /><img src="fileadmin/templates/2011/style/img/header2.jpg" alt="" /><img src="fileadmin/templates/2011/style/img/header3.jpg" alt="" /><img src="fileadmin/templates/2011/style/img/header5.jpg" alt="" /><img src="fileadmin/templates/2011/style/img/header4.jpg" alt="" /></h1>');
	
					// http://nivo.dev7studios.com/
					$('#slider').nivoSlider( {
						effect:'fade',
						controlNav : false,
						pauseTime: 7000,
						animSpeed: 1000,
						startSlide: 3,
						pauseOnHover:false
					});
				});

