// jQuery_accordion

// copyright (c) 2007 RedLine Magazine
// Licensed under the MIT License:

$(document).ready(function() {
	$("div.column_contents div.Dt").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
		});
	$("div.column_contents div.Dd").css("display","none");
	$("div.column_contents div.Dt").click(function(){
		$(this).next().slideToggle("fast");
		});
});
