$(function() {
	
	$('#nav ul li').mouseenter(function() {
		if ($('a>img', this).length > 0) {
			var imageName = $('a>img', this).attr('id').replace('', '');
		
			$('a>img', this).attr('src', 'images/common/'+imageName+'_over.gif');
		}
		
		$('>ul', this).fadeIn(0);
	}).mouseleave(function() {
		if ($('a>img', this).length > 0) {
			var imageName = $('a>img', this).attr('id').replace('', '');
		
			if (!$(this).hasClass('active')) {
				$('a>img', this).attr('src', 'images/common/'+imageName+'.gif');
			}
		}
		
		$('>ul', this).fadeOut(0);
	});
	
});

function showDropDown(sectionName) {
	$('#nav ul.level2').fadeOut(0);
	$('#nav a>img#n_' + sectionName).parent().siblings('ul').fadeIn(0);
}
