/* JQUERY CATEGORIE SLIDER SCRIPTS */

$(document).ready(function() {
	$('.meer_weten').hover(
		function() {
			$this = $(this);
			$id = $(this).attr('id');
			$('.meer_weten_link a', this).hide();
								
			$('#' + $id + '_content').stop(true, false).animate({
				'background-position' : '-170px'
			}, 200, function() {
				$('.under', $this).show();
			});
		},
		function() {
			$id = $(this).attr('id');
			$('.meer_weten_link a', this).show();
			$('.under', this).hide();
								
			$('#' + $id + '_content').stop(true, false).animate({
				'background-position' : '0px'
			}, 200, function() {
				// niets hoeft te gebeuren als we klaar zijn
			});
		}
	);
});
