var j = jQuery.noConflict();
		j(document).ready(function() {
			j("#more1").toggle(function() {
				j("#hidden_text1").slideDown("slow");
				j("#sh_img1").attr('src','images/front/boxes/hide.jpg');
				},
				function() {
				j("#hidden_text1").slideUp();
				j("#sh_img1").attr('src','images/front/boxes/learnmore.jpg');
			});
			
			j("#more2").toggle(function() {
				j("#hidden_text2").slideDown();
				j("#sh_img2").attr('src','images/front/boxes/hide.jpg');
				},
				function() {
				j("#hidden_text2").slideUp();
				j("#sh_img2").attr('src','images/front/boxes/learnmore.jpg');
			});
			j("#more3").toggle(function() {
				j("#hidden_text3").slideDown();
				j("#sh_img3").attr('src','images/front/boxes/hide.jpg');
				},
				function() {
				j("#hidden_text3").slideUp();
				j("#sh_img3").attr('src','images/front/boxes/learnmore.jpg');
			});
			
			j("#more4").toggle(function() {
				j("#hidden_text4").slideDown();
				j("#sh_img4").attr('src','images/front/boxes/hide.jpg');
				},
				function() {
				j("#hidden_text4").slideUp();
				j("#sh_img4").attr('src','images/front/boxes/learnmore.jpg');
			});
			
	})