// JavaScript Document
$(document).ready(function() {
	$(".more").prev().css({cursor: "pointer", color: "#3e2715", textDecoration: "underline"});
	$(".more").prev().hover(function() {
		$(this).css({color: "#975705"});
	}, function() {
		$(this).css({color: "#3e2715"});
	});
	$(".more").slideUp();
	$(".more").prev().click(function(){
		$(this).next("div".more).slideToggle();
		return false;
	});
});
