/*
-----::: ABCnet.nl © 2011 :::-----
DATE: 08/03/2011
EDITED: 08/03/2011
DESCRIPTION: fading links  
*/
$(document).ready(function() {
						   $('span').hover(
										  function(){
											  $(this).fadeTo('slow', 0.5)},
											  function(){
												  $(this).fadeTo('slow', 1.0)});
						    $('.start01topmenu a').hover(
										  function(){
											  $(this).fadeTo('slow', 0.5)},
											  function(){
												  $(this).fadeTo('slow', 1.0)});
							$('.socialnetworkarea a').hover(
										  function(){
											  $(this).fadeTo('slow', 0.5)},
											  function(){
												  $(this).fadeTo('slow', 1.0)});
							$('.start01-mainarea a').hover(
										  function(){
											  $(this).fadeTo('slow', 0.5)},
											  function(){
												  $(this).fadeTo('slow', 1.0)});
							$('.next01-lballoon01 a').hover(
										  function(){
											  $(this).fadeTo('slow', 0.5)},
											  function(){
												  $(this).fadeTo('slow', 1.0)});
							$('.next01-main01middle01 a').hover(
										  function(){
											  $(this).fadeTo('slow', 0.5)},
											  function(){
												  $(this).fadeTo('slow', 1.0)});
							$('.wilhelmuskaart01-txtarea01 img').hover(
										  function(){
											  $(this).fadeTo('slow', 0.5)},
											  function(){
												  $(this).fadeTo('slow', 1.0)});
							$('.taalkaart01-txtarea01 img').hover(
										  function(){
											  $(this).fadeTo('slow', 0.5)},
											  function(){
												  $(this).fadeTo('slow', 1.0)});
							$('.rekenkaart01-txtarea01 img').hover(
										  function(){
											  $(this).fadeTo('slow', 0.5)},
											  function(){
												  $(this).fadeTo('slow', 1.0)});
						   });
