	$(function() {
		$('.small_visuals .small_visual').each(function(index, noted) {
			note = $(noted).find('.note');
			note.css({'bottom': '-'+(note.height()*2)+'px' });
			
			$(noted).hover(function() {
				note = $(this).find('.note');
				note.animate({
					'bottom': '+='+(note.height()*2)+'px'
				}, 100);
			}, function() {
				note = $(this).find('.note');
				note.animate({
					'bottom': '-='+(note.height()*2)+'px'
				}, 100);
			});
		});
   });
	<!-- ??????? -->
	$.fn.easteregg({intUserSize:150,imgUrl:'/img/puzzle.jpg'});