$(document).ready(function() {

	$page = window.location.pathname;
	if(!$page) {
		$page = 'index.html';
	}
	$('div.section_nav ul li a, div.nav_box ul li a').each(function(){
		var $href = $(this).attr('href');
		if ( ($href == $page) || ($href == '') ) {
			$(this).parent().addClass('current');
		} else {
			$(this).parent().removeClass('current');
		}
	});

    if(typeof $().hint  == 'function') {
        $('#q').hint('blur');
    }

    // volunteer page faqs
    $('.faqa').hide();
    $('.faqq').click(function() {
        $(this).next('.faqa').toggle('slow');
    });




});

