//<![CDATA[
$(document).ready(function() {
			$("a.desc").each(function(index) {
				$(this).click(function() {
					var desc = $(this.href.substring(this.href.indexOf('#')));
					if(desc.is(':hidden')) {
						desc.slideDown(800);
						$(this).parent().css({"border-bottom" : "0", "background" : "#c00 url(img/border-white.gif) repeat-x 0 19px"});
					}
					else {
						desc.slideUp(800);
						$(this).parent().css({"border-bottom" : "solid 2px #a00", "background" : "#c00 url(img/border-white.gif) repeat-x 0 19px"});
					}
				}).toggle(function() {}, function() {});
			});
			$("div.desc").css({"display" : "none"});
});
// ]]>