var $j = jQuery.noConflict();

$j(document).ready(function() 
{
  $j('a.lightbox').lightBox();
  // equalHeight($j('.col1, .col2, .col3'));
  
	$j('#top-menu ul li')
    .mouseenter(function()
    {
		  $j('ul.level2', this).show();
	  })
    .mouseleave(function()
    {
  		$j('ul.level2', this).hide();
  	});
});

function equalHeight(group) {
	var tallest = 0;
	group.each(function() {
		var thisHeight = $j(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}
