$(document).ready(function() {
	$('#navbuttons img').hover(function() {
		// turn on
		if ($(this).attr('id') == 'nav_facebook') {
			msg = 'Find us on Facebook!';
		} else if ($(this).attr('id') == 'nav_youtube') {
			msg = 'Visit our Youtube channel!';
		} else if ($(this).attr('id') == 'nav_mailinglist') {
			msg = 'Join the mailing list!';
		}
		$('#navbuttonsmessage').html(msg);
	}, function() {
		// turn off
		$('#navbuttonsmessage').html('');
	});
});
