<script>
$(function() {
$("#radio").buttonset().show();
$(".ui-buttonset .ui-button").css({'margin-right':'0px!IMPORTANT'});
$("li").addClass("ui-corner-all");
$('li').click(function(){
var url = $(this).find('a').attr('href');
if(url!='' && url!='undefined' && url){
window.location.href=url;
}
else $(this).children('li').css({'cursor':'default'});
});
$('li').find('a:first').append('<span style="float:right;margin-top:10px;"><img style="height:25px;width:15px;" src="images/rarrow.png" style="vertical-align:middle"/></span>')
$('li').find('a:first').parent().parent().css({'cursor':'pointer'});
$('#content label').prepend('<br />').append('<br />');
$('a[data-role=button], input[type=submit]').button();
$('div[data-role=header] a').button();
$('div[data-role=header]').css({'float':'none','clear':'both','width':'100%'});
$('div[data-role=header]').children().css({'float':'left'});
$('div[data-role=header]').children('h1').css({'width':'80%'}).wrap('<center />');
$('div[data-role=header]').append('<div style="clear:both;float:none;"></div>');
});
</script>