$(document).ready(function(){
	$('ul.children').each(function(){
		var position = $(this).parent().children('a').position();
		
		$(this).css('top', position.top + $(this).parent().height() );
		$(this).css('left', position.left);
	});
	
	
	
	$('li.page_item a').hover(
	function(){
		$(this).parent().children('ul.children').show();
	},function(){
		$(this).parent().children('ul.children').hide();
	});

	$('ul.children').hover(
	function(){
		$(this).parent().children('a').addClass('current');
		$(this).show();
	},function(){
		$(this).parent().children('a').removeClass('current');
		$(this).hide();
	});
});

