jQuery(document).ready(function(){
	
	//give title on navigation prev and next
	jQuery('.nav-alignleft').find('a').attr('title', 'previous entries');
	jQuery('.nav-alignright').find('a').attr('title', 'next entries');
	
	jQuery('#open-box').click(function(){
		var boxpars = jQuery('#post-author-archive');
		if(boxpars.is(":hidden")){
			boxpars.slideDown();
			jQuery(this).addClass('medun');
		}	
	});
	
	jQuery('#close-box').click(function(){
		var boxpars = jQuery('#post-author-archive');
			boxpars.slideUp();
			jQuery('#open-box').removeClass('medun');
	});
	
});
