$(document).ready(function() {
	// leeg het trefwoord veld op focus
	$('#trefwoord').click(function() {
		if ($('#trefwoord').val() == 'Trefwoord invoeren')
		  $('#trefwoord').val('');
	});
	
	// clean het veld on submit als de standaardtekst er nog in staat
	$('#snelzoeken').submit(function() {
	      if ($("input:first").val() == "Trefwoord invoeren") {
	    	  $("input:first").val('')
	      }
	});
	
	$("select[name='tx_dmmjobcontrol_pi1[search][discipline]'] option:first").text('Kies een discipline');
	$("select[name='tx_dmmjobcontrol_pi1[search][region]'] option:first").text('Kies een provincie');
	
    //Append a div with hover class to all the LI  
    $('#navmenu-h li').append('<div class="hover"></div>');  
    $('#navmenu-h li').hover(  
        //Mouseover, fadeIn the hidden hover class    
        function() {  
            $(this).children('div').fadeIn('1000');   
        },   
        //Mouseout, fadeOut the hover class  
        function() {  
          $(this).children('div').fadeOut('1000');      
    });  
});


function verander(obj, plaatje) {
	var pl = document.getElementById(obj);
	pl.src=plaatje;
}
