	$(function()
	{	
		$("#showServicesLink").hover(
			function () {
				$('#services').show();
			},
			function () {
				$('#services').hide();
			}
		);
		

		
		
		$("#services").hover(
			function () {
				$('#services').show();
			},
			function () {
				$('#services').stop(true, true).fadeOut(200);
			}
		);
		
		$("#showServicesLink").click(
			function () {
				$('#services').show();
			});
		
	});

