// select default text empty in input fields
$(function(){
	
        //$('input[type=text]').live('focus',function(e){
        $('#zoeken, #login input[type=text]').live('focus',function(e){
		
	if(this.value == this.defaultValue){
            $(this).val('');
            }
	});
});


$(document).ready(function() {

    $('.imageBox img:not(:first-child)').click(function(){
        
        $('.imageBox img:first-child').attr('src', $(this).attr('src').replace('3','6'));
        $('.imageBox a').attr('href', $(this).attr('src').replace('3','6'));
    })
    $('.imageBox a').fancybox();
    
    // kiala
    
    
}); 
$(document).ready(function() {
    $("a.iframe").fancybox({
        'transitionIn'      :   'elastic',
        'transitionOut'     :	'elastic',
        'width'             :    900,
        'height'            :    650,
        'speedIn'           :	 600, 
        'speedOut'          :	 200, 
        'overlayShow'       :	 true
    });
});
