// JavaScript Document

//// Drop Down
$(document).ready(function(){

$('#topnav ul li').hover(
function () {
	$(this).addClass('active');
	$(this).children('ul').fadeIn('fast');
},
function () {
	$(this).removeClass('active');
	$(this).children('ul').fadeOut();
}
);
});
