jQuery(document).ready(function() {
	// Terug naar boven
	jQuery(".totop").click(function() {
		jQuery("html, body").animate({ scrollTop:0 });
		return false;
	 });

	jQuery("#tabs li a").click(function() {
		jQuery("a.current").removeClass("current");
		jQuery(this).addClass("current");
		return false;
	});
	
	jQuery('#menu li').hover(function(){
		jQuery(this).children('.submenu').show()
			},function(){
		jQuery(this).children('.submenu').fadeOut('fast')
	}); 
		
	// Klikbaar maken van het actie blok op de homepage
	jQuery("#win").click(function(){
    	window.location=$(this).find("a").attr("href");
		return false;
	});
});
