/*************************************************************/
/* IAV default JS file
/*************************************************************/
$(function(){
	dropdown();
});

function dropdown()
{
	$('ul#topnav li').hover(
		function()
		{
			$(this).addClass('hover');
			$(this).find('ul:first').show();
		},
		function()
		{
			$(this).removeClass('hover');
			$(this).find('ul:first').hide();
		}
	);
}
