// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

Behaviour.register({
	'#search_btn': function(element) {
		element.onmouseover = function() {
			element.src = '/images/search_btn_over.gif';
		}
		
		element.onmouseout = function() {
			element.src = '/images/search_btn_up.gif';
		}
	}
})