
jQuery.noConflict();

jQuery(document).ready(function($){

	tb_init('a.thickbox');

	$('ul#menu-pri').superfish({
		speed: 'fast',
		autoArrows: false
	});

	// Balance columns (refactor?)
	if ($('.col-1').height() > $('.col-2').height())
		$('.col-2').css('height', ($('.col-1').height()) + 'px');
	else if ($('.col-2').height() > $('.col-1').height())
		$('.col-1').css('height', ($('.col-2').height()) + 'px');

	if ($('.col-3').height() > $('.col-4').height())
		$('.col-4').css('height', ($('.col-3').height()) + 'px');
	else if ($('.col-4').height() > $('.col-3').height())
		$('.col-3').css('height', ($('.col-4').height()) + 'px');

	// Open external links in a new window
	$('a[@href^=http]').each(function(){
		if(this.href.indexOf(location.hostname) == -1) {
			$(this).attr('target', '_blank');
		}
	});
});