// jQuery_accordion

// copyright (c) 2007 RedLine Magazine
// Licensed under the MIT License


$(document).ready(function() {
	$("div.listContainer dt").hover(function(){
		$(this).css("cursor","pointer"); 
		$(this).css("color","#CC3333"); 
	},function(){
		$(this).css("cursor","default"); 
		$(this).css("color","#666"); 
		});
	$("div.listContainer dd").css("display","none");
	$("div.listContainer dt").click(function(){
		$(this).next().slideToggle("normal");
		});
});



