placeholder=new Kitten('random');
function Kitten(width, height, color) { var img, g, w, h; w = parseInt(width, 10); h = parseInt(height, 10); g = color ? "" : "g/"; img = document.createElement('img'); img.src = "http://placekitten.com/" + g + w + "/" + h; img.width = w; img.height = h; return img; };