function getStyles(el) {
width = $(el).get(0).style.width;
if (width == '') width = $(el).css('width');
resultStyle = el +
'{' +
'width:' + width + ';' +
'}';
return resultStyle;
}
function getStyles(el) {
width1 = Number($(el).css('width'));
width2 = Nubmer($(el).parent().css('width'));
width = width1/width2*100;
resultStyle = el + '{' + 'width:' + width + ';' +'}';
return resultStyle;
}