$(document).ready(function(){
	$('.button, .customize').button();
	
	// zebra striping tables
	$('table.alternatingHighlights tbody tr:nth-child(odd)').addClass('rowHighlight');
	
	// zebra striping tables and hover highlight
	$('table.zebra tbody tr:nth-child(odd)').addClass('rowHighlight');
	$('table.zebra tbody tr').hover(function(){$(this).addClass('rowHover');},function(){$(this).removeClass('rowHover');});
	
	// resend confirmation
	$('a.resend').click(function(e){return confirm('Are you sure you want to resend the email?');});
	
	// accordions
	$('div.accordion').accordion({
			collapsible: true,
			active: false
		});
});
