  jQuery(document).ready(function(){
	//voor kolommen fade effect
	var color2 = jQuery("#news_column2_color").css("backgroundColor"); // huidige achtergrond kleur
	jQuery("#news_column2_color").hover(
		function () {		
			jQuery(this).animate( { backgroundColor: '#F6F6F6', color: '#000' }, 500);			
		 },
		 function () {
			jQuery(this).animate( { backgroundColor: '' + color2 + '', color: '#fff' }, 500);
		 }
	); 
				var color2last = jQuery("#news_column2:last-child #news_column2_color").css("backgroundColor"); // huidige achtergrond kleur
	jQuery("#news_column2:last-child #news_column2_color").hover(
		function () {		
			jQuery(this).animate( { backgroundColor: '#F6F6F6', color: '#000' }, 500);			
		 },
		 function () {
			jQuery(this).animate( { backgroundColor: '' + color2last + '', color: '#fff' }, 500);
		 }
	); 
		var color3 = jQuery("#news_column3_color").css("backgroundColor"); // huidige achtergrond kleur
	jQuery("#news_column3_color").hover(
		function () {		
			jQuery(this).animate( { backgroundColor: '#F6F6F6', color: '#000' }, 500);			
		 },
		 function () {
			jQuery(this).animate( { backgroundColor: '' + color3 + '', color: '#fff' }, 500);
		 }
	); 
			var color3last = jQuery("#news_column3:last-child #news_column3_color").css("backgroundColor"); // huidige achtergrond kleur
	jQuery("#news_column3:last-child #news_column3_color").hover(
		function () {		
			jQuery(this).animate( { backgroundColor: '#F6F6F6', color: '#000' }, 500);			
		 },
		 function () {
			jQuery(this).animate( { backgroundColor: '' + color3last + '', color: '#fff' }, 500);
		 }
	); 
var color3b = jQuery("#column3_color").css("backgroundColor"); // huidige achtergrond kleur
	jQuery("#column3_color").hover(
		function () {		
			jQuery(this).animate( { backgroundColor: '#F6F6F6', color: '#000' }, 500);			
		 },
		 function () {
			jQuery(this).animate( { backgroundColor: '' + color3b + '', color: '#fff' }, 500);
		 }
	); 	
});
