$(document).ready(function() {
	$('.topnav li').hover(
		function() {
			$(this).children('ul').show();
		},
		function() {
			$(this).children('ul').hide();
		}
	);
	$('.topnav ul ul li').each(function() {
		if($(this).children('ul').length) {
			$(this).children('a').addClass('rightarrow');
		}
	});
});
