$(document).ready(function() {
	$(".print-btn").click(function(event) {
        window.print();
	});


	var speed = 500;
	var height_up = '30px';
	var height_down = '145px';

	$(".share-btn").parent().children(".links").css("display", "none");

	$(".share-btn").click(function(event) {
		event.preventDefault();
		
		if ($(this).hasClass("active")) {
			$(this).parents(".share").animate({height: height_up}, speed);

			$(this).parent().children(".links").slideUp(speed, function(){
				$(this).parent().children(".share-btn").removeClass("active");
			});
		}
		else {
			$(this).addClass("active");
			$(this).parents(".share").animate({height: height_down}, speed);
			$(this).parent().children(".links").slideDown(speed);
		}
	});
})




$("#block").animate({ 
        width: "70%",
        opacity: 0.4,
        marginLeft: "0.6in",
        fontSize: "3em", 
        borderWidth: "10px"
      }, 1500 );

