// JavaScript Document
$().ready(function() {
	$('#botmenu li["class!=active"] a').hover(function() {
		var s_newSRC = $(this).find('img').attr('src').replace(/\_s/, '_w');
		$(this).find('img').attr('src', s_newSRC);
	}, function() {
		var s_newSRC = $(this).find('img').attr('src').replace(/\_w/, '_s');
		$(this).find('img').attr('src', s_newSRC);
	});
});
