$(function(){
    $("table#topnav a").mouseover(function(){
        $(this).parent().addClass("hover");
    });
    $("table#topnav a").mouseout(function(){
        $(this).parent().removeClass("hover");
    });

    var pathArray = location.pathname.substring(1).split('/');
    if (pathArray[pathArray.length-2] == 'events'){
    	$("table#topnav td#topnav-events").addClass("here");
	} else if (pathArray[pathArray.length-2] == 'news'){
    	$("table#topnav td#topnav-news").addClass("here");
	} else if (pathArray[pathArray.length-2] == 'contact'){
    	$("table#topnav td#topnav-contact").addClass("here");
    }
    
	/* fix IE issue with clearfix */
	if ($.browser.msie){
		$('div.clearfix').each(function(){
			$(this).append('<div class=\'clear\'></div>');
		});
	}
});


