/*
-----::: ABCnet.nl © 2010 :::-----
DATE: 9/11/2010
EDITED: 9/11/2010
DESCRIPTION: UK&DUTCH FLAG FADING&CLICK NEEDS JQUERY LIBRARY
*/
$(document).ready(function() {
	
			//rollover the div
			
			$("#flaguk").hover(
  				function () {
			    $(this).fadeTo("slow", 0.33);}, 
  				function () {
    			$(this).fadeTo("slow", 1.00);}
);
		
			$("#flagdutch").hover(
  				function () {
    			$(this).fadeTo("slow", 0.33);}, 
  				function () {
   				 $(this).fadeTo("slow", 1.00);}
);
		
		// clicks
			$('#flaguk').click(function() {
			window.location.href = "/en/default.aspx";
});
			$('#flagdutch').click(function() {
			window.location.href = "/default.aspx";
});

						   });
