
//THIS IS FOR THE OPENY CLOSEY BITS
$(function(){
	$(".more").hide();
	$(".but_plus").click(function() {
		if ($(this).is(".open")) {
			$(this).css({'background-image':"url('but_plus.png')"});
			$(this).next(".more").hide('fast');
			$(this).removeClass("open");
		}
		else {
			if ($(".but_plus").is(".open")) {
				$(".but_plus").removeClass("open");			
				$(".but_plus").css({'background-image':"url('but_plus.png')"});
				$(".more").hide('fast');			
			}
			$(this).next(".more").show('fast');
			$(this).addClass("open");
			$(this).css({'background-image':"url('but_minus.png')"});
		}
	});
});
