$(document).ready(function() {

// homenav hover
	$('.homenav li a').hover(
		function() {
			position = $(this).position();
			if($(this).parents('li').hasClass('first')) $(this).parents('li').prepend('<div class="overfirst"></div>');
			else $(this).parents('li').prepend('<div class="over"></div>');
			$(this).siblings('.over').css({'top': position.top, 'left': position.left + 1}).fadeIn(300);
			$(this).siblings('.overfirst').css({'top': position.top, 'left': position.left + 1}).fadeIn(300);
		},
		function() {
			$(this).siblings('.over').fadeOut(250).remove();
			$(this).siblings('.overfirst').fadeOut(250).remove();
		}
	);

});
