$(function() {
	if ($.browser.opera) {
		// fix wrong right margin of buttons in opera
		$('button.btn').css('margin-right', '3px');
	};
	if ($.browser.mozilla) {
		// fix wrong top margin of buttons in FF
		$('button.btn').css('margin-top', '-1px');
	};

	if ($.browser.safari) {
		// fix wrong top margin of buttons in Chrome/Safari
		$('button.btn').css('margin-top', '-1px');
	};
});