
$(document).ready(function(){
	$('.submenu li').hover (function (){
		$(this).children ('ul').show ();
		$(this).children ('a').addClass ('hover');
	},
	function (){
		$(this).children ('ul').hide ();
		$(this).children ('a').removeClass ('hover');
	});
});
