// JavaScript Document

var frames = new Array(2);
frames[0] = "../images/search_btn_down.jpg";

function changeFrame(str){
	btnStyle = document.getElementById('search_btn').src;
	if(str == 'down'){
		btnStyle.bgPosition = ("30,0");
	} else {
		btnStyle.bgPosition = ("0,0");
	}
}
