$(function(){
	var fn_href = function(s) { return s.replace(/https?:\/\/.*?\//i , '/') };
	$('#menu_main li').hover(function(){
		$(this).addClass('over');
	},function(){
		$(this).removeClass('over');
	});
	$('#menu_main a').each(function(){ if (fn_href(this.href) == fn_href(location.href)) $(this).parent().addClass('active') });
	$('#menu_main li li.active').each(function(){ $(this).closest('li').addClass('active') });
});

$(function(){

	$('#logo_left').click(function() {
		window.location="http://www.wvyc.bc.ca";
	});
	
});
