// JavaScript Document

/* CMS subPages */
function showtr(id)
{
	if(document.getElementById(id).style.display == 'none' && document.getElementById(id).style.visibility == 'hidden')
	{
		document.getElementById(id).style.display = '';
		document.getElementById(id).style.visibility = '';
	} 
	else 
	{
		document.getElementById(id).style.display = 'none';
		document.getElementById(id).style.visibility = 'hidden'
	}
}



    $(document).ready(function(){	
        $("#sliderKlanten").easySlider({
            auto: true,
            continuous: true,
            controlsShow: false
        });
    });


