$(document).ready(function() {
	$('.open-box, .close-box').click(function(){

		var box = $('.inner', $(this).parent().parent().parent());
		
		if(box.css('display')=="none"){
			box.show('slow');
			$(this).css('background-image', "url('/sites/glocals/_static_media/public/boxes/close.jpg')");
		}
		else{
			box.hide('slow');
			$(this).css('background-image', "url('/sites/glocals/_static_media/public/boxes/open.jpg')");
		}
	});
	
	$('.open-more, .close-more').click(function(){
		var box = $('.more', $(this).parent().parent());
		var text = $(this).text();
		if(box.css('display')=="none"){
			box.show('slow');
			if (text.substr(0,4)=="Read")
				$(this).text("Read Less -");
			else
				$(this).text("Less -");
		}
		else{
			box.hide('slow');
			if (text.substr(0,4)=="Read")
				$(this).text("Read More +");
			else
				$(this).text("More +");
		}
	});
});