$(document).ready(function() {
$('#employment-sub').hide();
$('.employment').hover(function(){
	$('#employment-sub').show();
}, function() {
	$('#employment-sub').hide();
});
}); 
