$(document).ready(function() {
$("ul#feature-slider").cycle({
	fx: 'fade',
	pause: 1,
	prev: '#prev',
	next: '#next',
	speed:    500, 
	timeout:  8000 
	});
	
//$("ul#portfolio-slider").cycle({
	//fx: 'fade',
	//pager: '#cycle-pager',
	//pause: 1,
	//prev: '#new',
	//next: '#old',
	//speed:    500, 
	//timeout: 0, 
	//nowrap: 0, 
	//});
	
// $("ul#portfolio-gallery").cycle({
// 	fx: 'fade',
//	pager: '#cycle-pager',
//	pause: 1,
//	prev: '#prev',
//	next: '#next',
//	speed:    500, 
//	timeout:  8000 
//	});
});

	
var IdAry=['wij-zijn','wij-maken','voor','mensen','contact-ons'];
window.onload=function() {
 for (var zxc0=0;zxc0<IdAry.length;zxc0++){
  var el=document.getElementById(IdAry[zxc0]);
  if (el){
   el.onmouseover=function() {
     changeText(this,'hide','show')
    }
   el.onmouseout=function() {
     changeText(this,'show','hide');
    }
  }
 }
}
function changeText(obj,cl1,cl2) {
   obj.getElementsByTagName('SPAN')[0].className=cl1;
   obj.getElementsByTagName('SPAN')[1].className=cl2;
}
