$(document).ready(function() {
	$('#blok1 li').mouseover(function(){ 

		$(this).css('background-image', 'url(http://www.chinafatdevoort.nl/home/chinafat/www.chinafatdevoort.nl/templates/chin-a-fat/images/sub2Bullet.gif)');
		

		$(this).stop().animate({ backgroundColor: "#a49a98" }, { duration: 1000, easing: 'easeOutQuad' });


	});
	$('#blok1 li').mouseout(function(){
		$(this).css('background-image', 'url(http://www.chinafatdevoort.nl/home/chinafat/www.chinafatdevoort.nl/templates/chin-a-fat/images/sub1Bullet.gif)');
		
		$(this).stop().animate({ backgroundColor: "#675C58" }, { duration: 1000, easing: 'easeOutQuad' });
	});

	
	$('#blok2 li').mouseover(function(){
		$(this).css('background-image', 'url(http://www.chinafatdevoort.nl/home/chinafat/www.chinafatdevoort.nl/templates/chin-a-fat/images/sub1Bullet.gif)');
		

		$(this).stop().animate({ 'backgroundColor' :  "#c5858a"}, 350);
	
	});
	
	$('#blok2 li').mouseout(function(){
		$(this).css('background-image', 'url(http://www.chinafatdevoort.nl/home/chinafat/www.chinafatdevoort.nl/templates/chin-a-fat/images/sub2Bullet.gif)');
		
		$(this).stop().animate({ 'backgroundColor' : "#9d1845"}, 350);
		
	});
	
});
