/* --------------------------------------------------------------

  web.js
  * let's fireup the javascript!

-------------------------------------------------------------- */

$(document).ready( function() {


/* Spice up the navigation
-------------------------------------------------------------- */
$('#navigation li').hover(
	function() { $(this).stop().animate({'backgroundColor':'rgba(48,62,63,1)'},'fast'); },
	function() { $(this).stop().animate({'backgroundColor':'rgba(250,250,248,0)'},'fast'); }
	)
	.mousedown(function() {	$(this).stop().animate({'backgroundColor':'rgba(103,140,78,0.9)'}, 'fast'); })
	.mouseup(function() { $(this).stop().animate({'backgroundColor':'rgba(48,62,63,1)'}, 'fast'); });


/* New Window
-------------------------------------------------------------- */
	$('a[rel="external"]').click( function() {
		window.open( $(this).attr('href') );
		return false;
	});


}); // wrap it up
