$(document).ready(function(){

	//alternative to suckerfish js for sub navigation
	$("ul#nav_main li, div#we_also").mouseover(function(){
		$(this).addClass('hover');
    }).mouseout(function(){
		$(this).removeClass('hover');
    });

	var highest = Math.max($('.box_twothirds .content').height(),$('.box_onethird .content').height());
	$('.match_height').height(highest);
	$('div.content').find('h3:first').addClass('notopmargin');
	if($('a.fancybox')) $("a.fancybox").fancybox();
 
});


