// JavaScript Document

  $(document).ready(function(){
    
    $("#home").mouseover(function(){
      $("#home").animate( { borderRightWidth:"3px" }, { queue:false, duration:200 } )
    });
	
	
	$("#home").mouseout(function(){
      $("#home").animate( { borderRightWidth:"0px" }, { queue:false, duration:200 } )
    });
	   $("#bedrijf").mouseover(function(){
      $("#bedrijf").animate( { borderRightWidth:"3px" }, { queue:false, duration:200 } )
    });
	
	
	$("#bedrijf").mouseout(function(){
      $("#bedrijf").animate( { borderRightWidth:"0px" }, { queue:false, duration:200 } )
    });
	  $("#producten").mouseover(function(){
      $("#producten").animate( { borderRightWidth:"3px" }, { queue:false, duration:200 } )
    });
	
	
	$("#producten").mouseout(function(){
      $("#producten").animate( { borderRightWidth:"0px" }, { queue:false, duration:200 } )
    });
	  $("#nieuw").mouseover(function(){
      $("#nieuw").animate( { borderRightWidth:"3px" }, { queue:false, duration:200 } )
    });
	
	
	$("#nieuw").mouseout(function(){
      $("#nieuw").animate( { borderRightWidth:"0px" }, { queue:false, duration:200 } )
    });
	  $("#promoties").mouseover(function(){
      $("#promoties").animate( { borderRightWidth:"3px" }, { queue:false, duration:200 } )
    });
	
	
	$("#promoties").mouseout(function(){
      $("#promoties").animate( { borderRightWidth:"0px" }, { queue:false, duration:200 } )
    });
		  $("#contact").mouseover(function(){
      $("#contact").animate( { borderRightWidth:"3px" }, { queue:false, duration:200 } )
    });
	
	
	$("#contact").mouseout(function(){
      $("#contact").animate( { borderRightWidth:"0px" }, { queue:false, duration:200 } )
    });

	start();
	
	
/*
    $("#go2").click(function(){
      $("#block2").animate( { width:"90%"}, 1000 )
         .animate( { fontSize:"24px" } , 1000 )
         .animate( { borderLeftWidth:"15px" }, 1000);
    });

    $("#go3").click(function(){
      $("#go1").add("#go2").click();
    });

    $("#go4").click(function(){
      $("div").css({width:"", fontSize:"", borderWidth:""});
    });*/

  });
 
var minHeight=415;
/*var l=-21;
var y =21;
var w = 0;
var b = 766;
var top = -650;
var timer = null;
var terug = false;*/
var gestart= false;

/*=======================================================================================================================================================*/

		//Hierdoor start alles
		
/*=======================================================================================================================================================*/


function start() {
if(!gestart){
	checkHeight();
	gestart = true;
	}
}

/*=======================================================================================================================================================*/

		//Deze functie gaat de titel vergroten
		
/*=======================================================================================================================================================*/

function checkHeight()
{
var hoogteTekst= document.getElementById('tekst2');

if (hoogteTekst.style.height < 415)
{
	hoogteTekst.style.height = auto;
}
else
{
	hoogteTekst.style.height = 415 + 'px';

}

}



