$(document).ready(function()
{
	// No borders on the right-most menu items
	$('#content .box ul.menu li.top:last').css('border-right', '0');

	// Add table stripes
	$('table.stripe tbody tr:nth-child(odd)').addClass('alt');

	// Flash content
	$('.flash').flash(null, { expressInstall: true, version: 7 }, function(options)
	{
		var self = $(this);
		var html = self.html();

		options.src = self.attr('rel');
		options.width = self.width();
		options.height = self.height();

		self.html('<div class="hide-block">'+ html +'</div>').prepend($.fn.flash.transform(options));
	});

	if ($('#admin textarea.editor').length)
	{
		// Changed editor textareas into markItUp with Markdown settings
		$('#admin textarea.editor').markItUp(mySettings);
	}

	// Require confirmation
	$('a.confirm').click(function()
	{
		return confirm('This action cannot be undone, continue?');
	});

	// Add popin links
	$('a[rel^="popin"]').prettyPopin();
});

