// JavaScript Document


$(function() {
	$("#a_home").hover(
		  function() { 
		  	$("#home").show(0);
			$("#evenementen").hide();
			$("#organisatie").hide();
			$("#grafisch").hide();
			$("#web").hide();
		  }, 
		  function() { 
		  	$("#home").hide();

		  });
	$("#home").hover(
		function() {
			$("#home").show(0);
			$("#evenementen").hide();
			$("#organisatie").hide();
			$("#grafisch").hide();
			$("#web").hide();
		}, 
		function() { $("#home").hide();
		});

	$("#a_evenementen").hover(
		  function() { $("#evenementen").show(0);
		  			$("#home").hide();
			$("#organisatie").hide();
			$("#grafisch").hide();
			$("#web").hide();}, 
		  function() { $("#evenementen").hide();

		  });
	$("#evenementen").hover(
		function() {$("#evenementen").show(0);
					$("#home").hide();
			$("#organisatie").hide();
			$("#grafisch").hide();
			$("#web").hide();}, 
		function() { $("#evenementen").hide();
		});
	
	$("#a_organisatie").hover(
		  function() { 
		  	$("#organisatie").show(0);
		  	$("#evenementen").hide();
			$("#home").hide();
			$("#grafisch").hide();
			$("#web").hide();}, 
		  function() { $("#organisatie").hide();

		  });
	$("#organisatie").hover(
		function() {
			$("#organisatie").show(0);
			$("#evenementen").hide();
			$("#home").hide();
			$("#grafisch").hide();
			$("#web").hide();}, 
		function() { $("#organisatie").hide();
		});
	
	$("#a_grafisch").hover(
		  function() { $("#grafisch").show(0);
		  	$("#evenementen").hide();
			$("#organisatie").hide();
			$("#home").hide();
			$("#web").hide();}, 
		  function() { $("#grafisch").hide();

		  });
	$("#grafisch").hover(
		function() {$("#grafisch").show(0);
			$("#evenementen").hide();
			$("#organisatie").hide();
			$("#home").hide();
			$("#web").hide();}, 
		function() { $("#grafisch").hide();
		});	
	
	$("#a_web").hover(
		  function() { $("#web").show(0);
		  	$("#evenementen").hide();
			$("#organisatie").hide();
			$("#grafisch").hide();
			$("#home").hide();}, 
		  function() { $("#web").hide();

		  });
	$("#web").hover(
		function() {$("#web").show(0);
			$("#evenementen").hide();
			$("#organisatie").hide();
			$("#grafisch").hide();
			$("#home").hide();}, 
		function() { $("#web").hide();
		});		
});

$(function() {
$("#scroller").simplyScroll({
			className: 'custom',
			autoMode: 'loop',
			frameRate: 20,
			speed: 2
});
		   });
	
