var currFile = '';

$(document).ready(function(){
		$('div#jmenu').hover(
			function() { $('ul', this).css('display', 'block'); },
			function() { $('ul', this).css('display', 'none'); });
		$('li.headlink').hover(
				function() { $('ul', this).css('display', 'block'); },
				function() { $('ul', this).css('display', 'none'); });
		$('li.headlink ul li').hover(
				function() { $(this).css('background', '#989898'); },
				function() { $(this).css('background', '#DBDBDB'); });
		$('li.headlink ul li').hover(
				function() { $('a', this).css('color', '#ffffff'); },
				function() { $('a', this).css('color', '#5A5A5A'); });
		$('div.category-switch').hover(
				function() { $('ul', this).css('display', 'block'); },
				function() { $('ul', this).css('display', 'none'); });
		$('div.category-switch ul li').hover(
				function() { $(this).css('background', '#989898'); },
				function() { $(this).css('background', '#DBDBDB'); });
		$('div.category-switch ul li').hover(
				function() { $('a', this).css('color', '#ffffff'); },
				function() { $('a', this).css('color', '#5A5A5A'); });
		
	});
