$(document).ready(function() {

		$(".box li a.hoverbox").mouseenter(function(){
			$(this).parent().css({'position' : 'relative'});
			$(this).next().show();
			
		});

		$(".box li a").mouseleave(function(){
			$(this).parent().css({'position' : 'static'});
			$(this).next().hide();
		});
		
		$(".boxavocats").click(function(){
			window.location=$(this).attr("rel"); 
			return false;
		});

});


