$(document).ready(function(){
	var aoff = $('a.serv').position();
	var ddpos = Math.round(aoff.left-5);
	$('#dropdown').css('left',ddpos+'px');
	
	$('#dropdown li').click(function() {
		var sqLink = $(this).children('a').attr('href');
		window.location=sqLink;
	});
	
	$('.serv').mouseover(function() {
		$('#dropdown').css('display','block');
	});
	$('#nav li a').not('.serv').mouseover(function() {
		$('#dropdown').css('display','none');
	});
	$('#dropdown').mouseenter(function() { $(this).css('display','block'); });
	$('#dropdown').mouseleave(function() { $(this).css('display','none'); });
});
