$(function() {
$('#menu .parent').mouseover(function(){
	$(this).find('ul').show();
	$(this).find('a:first').addClass('active');
	$(this).find('.cover').show();
});
$('#menu .parent').mouseout(function(){
	$(this).find('ul').hide();
	$(this).find('a:first').removeClass('active');
	$(this).find('.cover').hide();
});
});