
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}


$(document).ready(function() {
	$('.readmore-link').live('click', function(e) {
		if ($(this).nextAll('.readmore').eq(0).is(':hidden'))  {
			$(this).nextAll('.readmore').eq(0).slideDown();
			$(this).text($(this).text().replace('Show', 'Hide'));
			e.preventDefault();
		} else {
			$(this).nextAll('.readmore').eq(0).slideUp();
			$(this).text($(this).text().replace('Hide', 'Show'));
			e.preventDefault();
		}
	});	
});

function toggleArchiveArea() {

}
