$(document).ready(function() { 
	
	//boxy modal window
	$(function() {
	  $('.boxy').boxy();
	});
	
	//hide read more copy
	$(".left-read-more").hide();

	//show read more copy
	$(".read-more-btn").click(function () {
		$(".left-read-more").fadeTo(500, 1, function() { // hide the posts
         	$(".left-read-more").slideDown(750);
     	});
	});
	
	//donate graph
	$('#bar1').animate({backgroundPosition: '0 -15px'},{duration:5000});
	$('#bar2').animate({backgroundPosition: '0 -5px'},{duration:5000});
	
	
});

