/**
 * Singleton
 */
var de = {} ;de.doyowesi = {}, de.doyowesi.Kunst = function(){};
de.doyowesi.Kunst.prototype = {

	/**
	 * 
	 */
	 enterSearch : function(_def) {
		var s = document.getElementById('s');
		if (s) {
    	if (s.value == _def) s.value = '';
			s.focus();
			s.style.background = '#fff';
		};
	 },
  /**
	 * 
	 */
	 leaveSearch : function(_def) {
		var s = document.getElementById('s');
		if (s) {
			if (!s.value) s.value = _def;
			s.style.background = 'none';
		 }
	 }

};
kunst = new de.doyowesi.Kunst();
