/*
-----::: ABCnet.nl © 2011 :::-----
DATE: 28/06/2011
DESCRIPTION: Fading image link
*/
$(document).ready(function() {
						   $('.main020304 a').hover(function() {
														 $(this).fadeTo("slow", 0.66);},
														 function() {
															 $(this).fadeTo("slow", 1.00);
														 });
						   });
