/** Methode */

var Custom = {
	init: function(method) {
		//search engine
		$$('#words input').each(function (el) {
			if(el.getAttribute("type") == "text") {
				el.addClass("input-text");
			} else {
				el.addClass("input-button");
			}
		});
		
		//round-corner
		//http://sgd-ui.melchizedek.ath.cx/demos/corner.html
		$$('#menu-left .active').each(function(item){ 
			opts = JSON.decode({fx:'round'});
			item.corner(opts);
		});

		$$('#others-page UL LI UL').each(function(item){ 
			opts = JSON.decode({fx:'round'});
			item.corner(opts);
		});
		
	}
}
window.onload = Custom.init;
