/*	--  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --   
	animated dog based on:
	jQuery Robot v.01 - Original idea, graphics, mark-up, css and clunkified js script by: Anthony Calzadilla
	jQuery robot script completely rewritten by the very generous folks at: codingcyborg.com
	--  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --   */
$('#eyes').css("margin-left","18px");
$('#balloon').css("margin-top","-112px");
$('#bear').mouseenter(function(){
	$('#eyes').animate({marginLeft: '21px'}, 150).animate({marginLeft: '18px'}, 100);
	});	
$('#balloon').mouseenter(function(){
	$('#balloon').animate({marginTop: '-115px'}, 50).animate({marginTop: '-112px'}, 50);
	});	

