// JavaScript Document

$(document).ready(function() {
	$(".power dt").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
		});
	$(".power dd").css("display","none");
	$(".power dt").click(function(){
		$(this).next().slideToggle("fast");
		});
});

