		function test(){
                
                   $('#overbtn').removeClass('btn_over').addClass('btn_over_click');
                   $('#hypothee').removeClass('btn_hypothee').addClass('btn_hypothee_click');
                   document.getElementById('container1').style.display = "none";
                  
                  $('#container2').fadeIn('fast');
                 
                }
                function hypotheec(){
                   // alert('i got hit');
                   $('#overbtn').removeClass('btn_over_click').addClass('btn_over');
                   $('#hypothee').removeClass('btn_hypothee_click').addClass('btn_hypothee');
                     
                   
                  
                   document.getElementById('container2').style.display = "none";
                    $('#container1').fadeIn('fast');
                 //  setTimeout('delay()', 100);
                 
                }
                function delay(){
                // alert('i got hit');
                   // $('#container2').fadeOut('slow');
                     $('#container1').fadeIn('fast');
                        // document.getElementById('container1').style.display = "block";
                }
              /*  $('#btn_dow').click(function() {
                  //  alert('i got hit');
                  $('#dowsier_slide').slideDown('slow', function() {
                    // Animation complete.
                  });
                });
                function dowsier(){
                    //alert('i got hit');
                     $('#dowsier_slide').slideDown('slow');
                    }
                 function dow_off(){
                      $('#dowsier_slide').slideUp('slow');
                 }*/




$(document).ready(function(){
    $('.dossier_content').hide();
    $('#naam').val("Naam");
    $('#email').val("Email");
//alert('you cocks');
  //  $('.subscribe').click(function(){
   //    alert('i got hit');
  //  });
     
});

$(document).ready(function(){
        $('.btn_uwdossier').click(function() {
                $('.dossier_content').animate({
                        height: 'toggle'
                        }, 500, function(/* callback here */) {
                        // Animation complete.
                });
        });
});


Site = new function(){

  this.Delegates = new Array();

 
  this.AttachJS = function (fileName){
        var headID = document.getElementsByTagName("head")[0];         
        var newScript = document.createElement('script');
        newScript.type = 'text/javascript';
        newScript.src = fileName;
        headID.appendChild(newScript);
    }

   this.OnLoad = function(){
            $(document).ready(function(){
		for(var index in Site.Delegates){
			var callback = Site.Delegates[index];
			callback.call();
		}
             });
	}
    
}


