$(document).ready(function() {
	$('div.description').hide();
	$('h2.analysis').addClass('opened').next('div.description').show();
	
	$('h2.title span').click(function() {
		$(this).parent().toggleClass('opened').next('div.description').toggle();
	});
    $('#heart').hover(function() {
    	$(this).attr('src','/images/assets/heartbit.gif');
    },
    function() {
    	$(this).attr('src','/images/assets/heart.gif');
    });
	
});
