﻿function getCornice(item) {
    if (item.style.backgroundImage == '') {
        item.style.backgroundImage = 'url(' + item.src + ')';
        /*var w = item.width;
        var h = item.height;
        
        item.style.width = '140px';
        item.style.height = '140px';*/
        
        item.src = '/img/1x1.gif';
        item.width = '160px';
        item.height = '160px';
    }

    }