jQuery(document).ready(function() {
    jQuery("#newCoocoonersLst img").mouseover(function() {
        //var imgHeight = - (0 - jQuery(this).height() - jQuery(this).next().height() - 5) + "px";
        var imgHeight = (0 + jQuery(this).height() + jQuery(this).next().height() + 5) + "px";
        jQuery(this).parent().css("height", imgHeight);
        jQuery(this).animate({
            marginLeft: "-10px",
            marginTop: "-10px",
            marginBottom: "-7px",
            width: "70px"
        }, 100 );
    });


    jQuery("#newCoocoonersLst img").mouseout(function() {
        jQuery(this).animate({
            marginLeft: "0px",
            marginTop: "0px",
            marginBottom: "0px",
            width: "50px"
        }, 100 );
    });
})
