/*
-----::: ABCnet.nl © 2011 :::-----
DATE: 15/06/2011
DESCRIPTION: imgfaders ABCnet.nl ©
*/
$(document).ready(function() {
						   $('.popup img').hover(
											  function () {
												  $(this).fadeTo('slow','0.6');
											  },
											  function () {
												  $(this).fadeTo('slow','1.0');
												  });
						   });
