$(function (){

	var hgt = $('#homemenu .overlayContainer').height() - $('#homemenu .openCloseWrap').height();

	$("#homemenu .button a").mouseenter(function (){
    	$(this)
			.addClass("visible")
			.parent().parent().find(".slider").stop().animate({ 
				top: hgt - ($(this).parent().parent().find(".slider").height() + 30)
			}, 800 ); 
	});
	$("#homemenu .button a").mouseleave(function (){	
		$(this)
			.removeClass("visible")
			.parent().parent().find(".slider").stop().animate({ 
			  top: $(this).offset().top
			  }, 800 );
	});
});
