$(document).ready(function() { 
    
	

$('.dctrplayer').hide();


$('.purchasebuttons').hide();


$('h3').click(function () {
	$(this).next().slideToggle('normal');
});

$('h3').hover(function () {
	$(this).animate({'backgroundColor':'#fafafa'}, 400);
}, function() {
	$(this).animate({'backgroundColor':'#f7f9de'}, 400);
});



}); 

