$(document).ready(function()
		{
               	$('#divbutton1').toggle(
                    function()
			{
						$('#button-img1').attr('src','wp-content/themes/bytedust-v2/images/english.png');
                        $('#div1').css({'display':'none'});
                        $('#div2').fadeIn()();
                       	
                    	}, 
			function() 
			{
                        $('#button-img1').attr('src','wp-content/themes/bytedust-v2/images/nederlands.png');
						$('#div2').css({'display':'none'});
                        $('#div1').fadeIn()();
                    	});
          	});
			

$(document).ready(function()
		{
               	$('#divbutton2').toggle(
                    function()
			{
						$('#button-img2').attr('src','wp-content/themes/bytedust-v2/images/english.png');
                        $('#div3').css({'display':'none'});
                        $('#div4').fadeIn()();
                       	
                    	}, 
			function() 
			{
                        $('#button-img2').attr('src','wp-content/themes/bytedust-v2/images/nederlands.png');
						$('#div4').css({'display':'none'});
                        $('#div3').fadeIn()();
                    	});
          	});
