// JavaScript Document

$(document).ready(function() {
	$('.nav-button').click(function() {
		return false;
	});
	
	$('.nav-button').each(function() {
		$(this).parent().mouseenter(function(e){
			$(this).find('.nav-button').addClass('on');
			$(this).find('.drop-down:hidden').slideDown("fast");
		});
		$(this).parent().mouseleave(function(e){
			$(this).find('.nav-button').removeClass('on');
			$(this).find('div.drop-down:visible').slideUp("fast");
		});
	})
	
	$('.drop-down').hide();
	
	$('.go_button').click(function() {
		location.href = $('select#location_drop_down option:selected').val();
		return false;
	});
	
	
	$('.print_button').click(function() {
		window.print();
		return false;
	});
	
	$(".drop-down").find("a[href^='/volunteer/']").each(function() {
		$(this).attr('target','_blank');
	});
	
});