/************************************
*	Custom Script for Cat and Mouse
*	Desc: Faecbook Like Box expander
*************************************/

$(function(){
	$('#likebox').mouseenter(function(){
		$(this).stop().animate({height: '393px'},{duration:400, easing:'easeOutQuint', complete:scrollToBottom});
	})
	$('#likebox').mouseleave(function(){
		$(this).stop().animate({height: '261px'},{duration:400, easing:'easeOutQuint', complete:scrollToBottom});
	})
})

function scrollToBottom(){
	$.scrollTo('100%', 500, {easing:'easeOutQuint'});
}
