/* 
My Bookmarklet
Copyright 2006 Name
License: ...
*/
(function() {
	var bm = function(d) { // d = frame document
		// bookmarklet code here
		
	};
	var f = window.frames;
	if (!f.length) bm(document);
	else for (var i=0; i<f.length; i++) bm(f[i].document);
})();
