$().ready(function(){
	$('button.navigation-button').click(function(){
		window.location = $(this).attr('href');
	});
	
	$('table.table-horizontal').attr('cellspacing','0').attr('cellpadding','0');
	$('table.table-decorated tbody tr:even').addClass('alt');
	$('table.ajax-table tbody tr').css('cursor','pointer').mouseover(function(){
		$(this).addClass('over');
	}).mouseout(function(){
		$(this).removeClass('over');
	}).click(function(){
		window.location = $(this).attr('href');
	});
	$('form.decorate-required .required label').append(' <span class="form-required">*</span>');
});