
	$(document).ready(function() {
	
		// bind hover event to all anchors in first level
		$('ul.first > li > a').hover(function() {
			$(this).parent().find('ul.second').show();
		}, function() {
			$(this).parent().find('ul.second').hide();
		});
		
		// bind mouse leave event to all anchors in second level
		$('ul.second').hover(function() {
			$(this).show();
		}, function() {
			$(this).hide();
		});
		
		//$('ul.second:last').css('width', '120px');
		
	});
