/*
For full source code and more DHTML scripts, visit http://www.dynamicdrive.com
*/

$('.nav_link').hover(function () {
	$(this.parentNode).addClass('nava');
	$('.snav').hide();
	$('#s' + this.parentNode.id).show();
}, function () {
	$(this.parentNode).removeClass('nava');
	$('#s' + this.parentNode.id).hover(function () {}, function () { $(this).hide(); });
});
