			var $j = jQuery.noConflict();

			$j(function(){

				$j(".archive_box img").hover(function() {
						$j(this).fadeTo("fast", 0.3);
						$j(this).parent().parent().children(".archive_box_caption").show();
						}, function() {
							$j(this).fadeTo("fast", 1);
							$j(this).parent().parent().children(".archive_box_caption").hide();
						});
						
				$j('a#pagecontent_hide').click(function() {
					$j('#page_content_box').slideToggle(600);
					return false;
				  });
				  
				  $j('a#pagecontent_show').click(function() {
					$j('#page_content_box').slideToggle(600);
					return false;
				  });
					
			});