/**
 * Author: Lee Langley
 * Date Created: 08/03/2011 14:42
 */
$(window).ready(function(){
	$('#mainNav .navItem').hover(function(){
		$(this).find('.subNav').stop(false, true).slideDown('fast');
	}, function(){
		$(this).find('.subNav').stop(false, true).slideUp('fast');
	});
});
