$(document).ready(function(){
$(".btn-slide").toggle(function(){
var thisPanel = $(this).parent().parent().find(".panel");
$(".panel").not(thisPanel).animate({"width": "-=220px","height": "220"}, "slow");
thisPanel.animate({"width": "+=220px","height": "220"}, "slow");
$(this).toggleClass("active"); return false;
},function(){
$(this).parent().parent().find(".panel").animate({"width": "-=220px","height": "220"}, "slow");
$(this).toggleClass("active"); return false;
});
});