/* Print function ///////////////////////////*/
jQuery.noConflict();
jQuery(document).ready(function($) {
	$('#tools').prepend('<div class="print"><a href="#print">Print</a></div>');
	$('#tools .print a').click(function() {
		window.print();
		return false;
	});

	/* 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 /////////////////////////////////////*/
});
/* end /////////////////////////////////////*/


