	$(document).ready(function(){
		$('li.dropper ul').css('display', 'none');
		$('li.dropper').hover(
			function() { 
				$(this).children().first().css('background', 'transparent url(_images/menu-dropper.gif) top left no-repeat');
				$('ul', this).css('display', 'block'); },
			function() { 
				$(this).children().first().css('background', 'transparent url(_images/menu-yellow.gif) top left no-repeat');
				$('ul', this).css('display', 'none'); });
	});
