$(document).ready(function(){
	$('li.drop').hover(
		function() { 
			$('ul', this).css('display', 'block');
			$('ul', this).css('position', 'absolute'); },
		function() { $('ul', this).css('display', 'none'); });
		
	$(".numeric").keypress(function(e) {
		if( e.which!=8 && e.which!=0 && (e.which<48 || e.which>57)) {
			$("#numeric_error").html("Please only enter numeric <br />values for your contact number").show().fadeOut(1500);
			return false;
		}
	});
});

