jQuery(function ($) {
	$(".smlbox, .fatbox").hover(function () {
		$(this).animate({height: "150px"}, 100 );
		},function(){
		$(this).animate({height: "75px"}, 250 );
		});
	});

jQuery(function ($) {
	$(document).ready( function () {
		$(".cover").animate({width: "785px"}, 800 );
		$(".cover").animate({width: "0px"}, 1800 );
		});
	});

jQuery(function ($) {
		$(".chipdate").fadeTo(0, 0);
	$("#chip-feat").hover(function () {
		$(".chipdate").fadeTo(100, 1);
		},function(){
		$(".chipdate").fadeTo(250, 0);
		});
	});
