var $j = jQuery.noConflict();

$j(document).ready(function(){
	$j('ul#nav > li').hover(
		function() {
			$j('div', this).css('display', 'block');
			$j(this).children().addClass('current');
		},
		function() {
			$j('div', this).css('display', 'none');
			$j(this).children().removeClass('current');
		}
	);
});


