Jandes,
$(function() {
$("#div_for_img img").each(function() {
var a = $(this).attr("width");
var b = parseInt(a);
b = a / 2;
var w = 0;
$(this).click(function() {
if (w == 1) {
$(this).attr("width", a);
$(this).attr("height", a);
w = 0
} else {
$(this).attr("width", b);
$(this).attr("height", b);
w = 1
}
})
})
});