$(document).ready(function(){
	//This is a work-around so that the hidden DIVs can be edited in the page, in admin mode.
	$("div.container_bucket_rowspacer_show").parent().find(".moretxt1").hide(); //Hide the overflow when page loads.
	$("div.container_bucket_rowspacer_show").parent().find(".moretxt2").hide(); //Hide the overflow when page loads.

	$("a.more1").click(function(){
		if ( $(this).hasClass("less") ) {
			//$(this).removeClass("less").html("more..."); //YES!
			$(this).removeClass("less").html("<img src='/Redesign%20Images/home_bucket_showmore.jpg' width='927' height='37' border='0' />"); //YES!
			$("div.container_bucket_rowspacer_show").parent().find(".moretxt1").hide(); //YES!
		} else {
			//$(this).addClass("less").html("...less"); //YES!
			$(this).addClass("less").html("<img src='/Redesign%20Images/home_bucket_showless.jpg' width='927' height='37' border='0' />"); //YES!
			$("div.container_bucket_rowspacer_show").parent().find(".moretxt1").show(); //YES!
		}
	});
	
	$("a.more2").click(function(){
		if ( $(this).hasClass("less") ) {
			//$(this).removeClass("less").html("more..."); //YES!
			$(this).removeClass("less").html("<img src='/Redesign%20Images/home_bucket_showmore.jpg' width='927' height='37' border='0' />"); //YES!
			$("div.container_bucket_rowspacer_show").parent().find(".moretxt2").hide(); //YES!
		} else {
			//$(this).addClass("less").html("...less"); //YES!
			$(this).addClass("less").html("<img src='/Redesign%20Images/home_bucket_showless.jpg' width='927' height='37' border='0' />"); //YES!
			$("div.container_bucket_rowspacer_show").parent().find(".moretxt2").show(); //YES!
		}
	});

});
