jQuery.noConflict();

jQuery(document).ready(function(){
 jQuery("#directions").hide();


    //When mouse rolls over menu
    jQuery(".expand").mouseover(function(){
        jQuery(this).stop().animate({top:"20px"},{queue:false, duration:600})
        jQuery(".active .expand").stop().animate({top:"30px"},{queue:false, duration:600})

    });
	
	    jQuery(".active .expand").mouseover(function(){
        jQuery(".active .expand").stop().animate({top:"30px"},{queue:false, duration:600})

    });

    //When mouse rolls over content





    //When mouse is removed menu
    jQuery(".expand").mouseout(function(){
        jQuery(this).stop().animate({top:"0px"},{queue:false, duration:600})

    });
jQuery(".errors").click(function () {
    jQuery("#mail_achtergrond").fadeIn("slow");

});

jQuery("#show_directions button").click(function () {
if (jQuery("#directions").is(":hidden")) {
  jQuery("#directions").fadeIn("slow");
} else {
  jQuery("#directions").fadeOut("fast");
}
});

jQuery(".knop_je").click(function () {
  if (jQuery("#mail_achtergrond").is(":hidden")) {
    jQuery("#mail_achtergrond").fadeIn("slow");
  } else {
    jQuery("#mail_achtergrond").fadeOut("fast");
  }
});


    //When mouse is removed content


});
