$(document).ready(function() {
	$('#siteNav > li').hover(
		function() {
			$(this).children('ul').stop(true, true).fadeIn('200');
		},
		function() {
			$(this).children('ul').stop(true, true).fadeOut('200');
		}
	)
});
