$(document).ready(function(){
$(function(){if($.browser.msie==true && $.browser.version < 8) {
	$('button.save').click( function(event) {	
		var rx = /\bvalue ?= ?(".*?"|'.*?')/i;
		var matches = $(this)[0].outerHTML.match( rx );
		if( matches != null )
		$(this).attr( 'value', matches[1].substring( 1, matches[1].length - 1 ) );
		$('button').not( $(this) ).attr('disabled','disabled');
});}});
});