var $j = jQuery.noConflict();
// Use jQuery via $j(...)

// Print function ========================
$j(document).ready(function() {
	//$j('#tools').prepend('<div class="print"><a href="#print">Print</a></div>');
	//$j('#tools .print a').click(function() {
	//	window.print();
	//	return false;
	//});
	$j('#navtopbar').show();	
	$j('#navtopbar .navtop-close a').click(function() {
		$j('#navtopbar').hide();		
	});
});
// end ===============================

// Equal Column Height ====================
var max_height = 0;  
  
$j("div.col").each(function(){  
	if ($j(this).height() > max_height) { max_height = $j(this).height(); }  
});  

$j("div.col").height(max_height);
// end ===============================

// Add zebra style to tablerows ================
$j("tr:odd").addClass("odd");
// end ===============================
