// Andi Priambodo, ENMEDS 2008
// Execute this after the site is loaded.

$(document).ready(function() {

	// em top navigation
	$("div.navigation-menu a").hover(function() {
		$(this).next("em").animate({opacity: "show", top: "150"}, "slow");
	}, function() {
		$(this).next("em").animate({opacity: "hide", top: "130"}, "fast");
	});
	
	
});



