/* WILLIE NELSON */
/* Javascript Triggers and Custom Functions
----------------------------------------------------------------------------- */


	$(window).load(function() {

		navigation();

	});
	

/* FUNCTION: NAVIGATION DROP DOWN
----------------------------------------------------------------------------- */

	function navigation() {

		$('ul#navigation li.menu').hover(function() {

			$(this).addClass('hover');

		}, function() {

			$(this).removeClass('hover');

		});

	}

