function init() {
	if (!$.browser.msie || ($.browser.msie && $.browser.version > '6.9')) {
		$(".hover").hover(function() {
			var str_src = this.src.replace('.png', '_up.png');
			this.src = str_src;
		},function() {
			var str_src = this.src.replace('_up.png', '.png');
			this.src = str_src;
		});
	} else {
		$(".hover").hover(function() {
			//alert(this.style.filter);
			//alert($.browser.version);
			var str_src = this.style.filter.replace('.png', '_up.png');
			this.style.filter = str_src;
		},function() {
			var str_src = this.style.filter.replace('_up.png', '.png');
			this.style.filter = str_src;
		});
	}
}

$(document).ready(init);
