$(document).ready(function(){
$('.pencil1, .pencil2, .pencil3, .pencil4, .pencil5').hover(
function(){
		$(this).animate({bottom: 100}, {duration: 200, easing: 'easeInOutCirc'});
		},
function(){
	$(this).animate({bottom: -40}, {duration: 1000, easing: 'easeOutBounce'});
});
$('.pencil1').click(function(){
	$('.gb').animate({top: 200},{duration: 300, easing: 'easeOutBounce'});
});
});