$(function(){
	/* button hover */
	$('input.button,img.button').hover(buttonOver,buttonOut);
});

function buttonOver() {
	if ($(this).is(':not(.over)')) {
		
		ie6png 	= $.browser.msie 
				&& $.browser.version < 7 
				&& ($(this).css('filter') ? $(this).css('filter').indexOf('.png') : false);
				
		if(ie6png)	$(this).not('.nofix').iunfixpng();
		this.src.match(/_over\..../) ? null : this.src = this.src.replace(/\.(...)$/,'_over.$1');
		if(ie6png)	$(this).not('.nofix').ifixpng();
		$(this).addClass('over');
	}
}
function buttonOut() {
	if ($(this).is('.over')) {
		
		ie6png 	= $.browser.msie 
				&& $.browser.version < 7 
				&& ($(this).css('filter') ? $(this).css('filter').indexOf('.png') : false);
				
		if(ie6png)	$(this).not('.nofix').iunfixpng();
		this.src = this.src.replace(/_over\.(...)$/,'.$1');
		if(ie6png)	$(this).not('.nofix').ifixpng();
		$(this).removeClass('over');
	}
}