/* Print function ///////////////////////////*/
$(document).ready(function() {
	$('#tools').prepend('<div class="print"><a href="#print">Print</a></div>');
	$('#tools .print a').click(function() {
		window.print();
		return false;
	});
});
/* end /////////////////////////////////////*/

/* Equal Column Height /////////////////////*/
var max_height = 0;  
  
$("div.col").each(function(){  
	if ($(this).height() > max_height) { max_height = $(this).height(); }  
});  

$("div.col").height(max_height);
/* end /////////////////////////////////////*/

/* Add zebra style to tablerows ////////////*/
$("tr:odd").addClass("odd");
/* end /////////////////////////////////////*/

/* logo's */
$(document).ready(function() {
	$('#placeholder1').crossSlide({
  		sleep: 4,
  		fade: 1
	}, [
		{ src: '/fileadmin/site/nvdm/img/sliding-logos/logo-netcreators.gif', href: "http://www.netcreators.com", target: "external" },
		{ src: '/fileadmin/site/nvdm/img/sliding-logos/logo-hulskamp.gif', href: "http://www.hulskamp.nl", target: "external" },
		{ src: '/fileadmin/site/nvdm/img/sliding-logos/logo-vdweerd.gif', href: "http://www.drukkerijvanderweerd.nl", target: "external" }
	]);
	$('#placeholder2').crossSlide({
  		sleep: 4,
  		fade: 1
	}, [
		{ src: '/fileadmin/site/nvdm/img/sliding-logos/logo-rabobank.gif', href: "http://www.rabobank.nl" },
		{ src: '/fileadmin/site/nvdm/img/sliding-logos/logo-studio026.gif', href: "http://www.studio026.nl" }
	]);
	$('#placeholder3').crossSlide({
  		sleep: 4,
  		fade: 1
	}, [
		{ src: '/fileadmin/site/nvdm/img/sliding-logos/logo-tms.gif', href: "http://www.tmsproductions.nl" },
		{ src: '/fileadmin/site/nvdm/img/sliding-logos/logo-portaal.gif', href: "http://www.portaal.nl" }
	]);
});
