// Homepage dropdown article colors
  $(document).ready(function(){
    /* Drop down for featured article caption on homepage */
	$(".caption_home_image").animate({top:'-25px'},{queue:false,duration:200});
    $("#intro").hover(function () {
        $(".caption_home_image").animate({top:'-18px'}, 300) .animate({top:'-25px'},200)
    });
	/* Drop down for color divs on homepage */
	$(".preview_color").animate({top:'-40px'},{queue:false,duration:200});
	$(".preview_color").animate({opacity: 1.0}, 1000)
		.show(500).animate({top:'-21px'}, {queue:false,duration:200});
	
    $(".preview_recent").hover(function () {
        $(".preview_color", this).stop().animate({top:'2px'}, 300).stop().animate({top:'-2px'},200);
	}, function(){
        $(".preview_color", this).stop().animate({top:'2px'}, 200).stop().animate({top:'-21px'},200);
    });
  
// Homepage load 5 more function
	 // hides the enveloped DIV as soon as the DOM is ready
	 // (a little sooner than page load)
	  $('#load_5_more').hide();
	 // shows the enveloped DIV on clicking the noted link
	  $('a#load_5_more_show').click(function() {
	 $('#load_5_more').show('slow');
	 $(this).fadeOut();
	 return false;
	  });
	 // hides the button on clicking the noted link
	  $('a#load_5_more_hide').click(function() {
	 $('#load_5_more').hide('fast');
	 $('a#load_5_more_show').fadeIn();
	 return false;
    });
  });