$(document).ready(function() {
	$("dl#payment dt.payment-title").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default");
		});
	//$("dl#payment dt").css("display","inline");
	$("dl#payment dd.more").css("display","none");
	//$("dl#payment dd.first-q").css("display","block");
	//$("dl dt").css("text-decoration","underline");
	
	$("dl#payment dt.payment-title").hover(function(){
		$(this).animate({ 
    		opacity: 0.7  }, 500 );
	},function(){
		$(this).animate({ 
    		opacity: 1.0  }, 500 );
	})
	$("dl#payment dt.payment-title").click(function(){
		$(this).toggleClass("selected");
		$(this).next().next().slideToggle("normal");
		$("dl#payment dd.more").not($(this).next().next()).slideUp("normal");
		$("dl#payment dt.payment-title").not($(this)).removeClass("selected");		
		//$(this).next().css("display","block");
	});
	
	
$(function(){
	$("#open-close").toggle(function(){
		$("dl#payment dd.more").slideDown("fast");
	},
	function(){
		$("dl#payment dd.more").slideUp("fast");
	})
});
$("#open-close").click(function () {
  $("#open-close span").toggle();
});
$("#open-close").css("background-color","#eee").css("cursor","pointer").css("border","1px solid #666");
$(function(){
	$("#open-close").hover(function(){
		$(this).css("background-color","#ddd");
	},function(){
		$(this).css("background-color","#eee");
	})
})
});

$(function(){//drop shadow
$(".drop").jQdrop({
color: "#ccc",
top: 2,
left: 2,
weight: "bold"
});
});


