/**
 * Expanding Push
 *
 * Expanderar en flik
 */
jQuery(document).ready(function($){
	$("#push").hover(function() {
		$(this).stop();
		$(this).animate({
			height: "56px",
			width: "293px"
		}, 150);
	}, function() {
		$(this).stop();
		$(this).animate({
			height: "50px",
			width: "283px"
		}, 150);
	});
});
