/*
	Code voor mouseover in menu
*/


$(document).ready(function(){
	jQuery('a.mnuLink img').hover(
		function()
		{
			this.src = this.src.replace("_off","_on");
		},
		function()
		{
			this.src = this.src.replace("_on","_off");
		}
	);
	
	jQuery('div.partnerSlideshow').cycle({
		fx: 'fade',
		timeout: 700
	});
});
