// JavaScript Document

$(document).ready(function(){
	$('li.headlink').hover(
		function() { $('ul', this).css('display', 'block'); },
		function() { $('ul', this).css('display', 'none');});
	
	$('li.headlink ul li').hover(
		function() { $(this).css('background','url(/lewisandclark/assets/images/base/bg-subnav-link-decor.gif) 5px center no-repeat'); },
		function() { $(this).css('background','none');});
});
