ciao,
prova cosi...
codice:
<script>
$(document).ready(function(){
$('.boxTeam').width('200px');
$('.boxTeam').height('150px');
$('.boxInfo').width('0px');
$('.boxLogo').width('100%');
$('.boxCategory').width('0px');
$('.boxData').width('0px');
$(".boxTeam").each(function () {
work(this.id);
});
function work(_id)
{
var _id = '#' + _id;
$(_id ).css("cursor","pointer").click(function() {
$(_id).animate({
width: "100%",
height: "auto",
minHeight:"150px"
});
$(_id + '>.boxInfo').animate({
width: "70%",
height: "auto",
minHeight:"150px"
});
$(_id + '>.boxLogo').animate({
width: "30%"
});
$(_id + '>.boxCategory').animate({
width: "100%",
height: "50px"
});
$(_id + '>.boxData').animate({
width: "100%",
height: "50px"
});
});
$(_id).mouseout(function() {
$(_id).animate({
width: "200px",
height: "150px"
});
$(_id + '>.boxInfo').animate({
width: "0%",
height: "auto",
minHeight:"150px"
});
$(_id + '>.boxLogo').animate({
width: "100%"
});
});
}
});
</script>