$(document).ready( function() {

	$('div#nav ul li a')
	.hover( function() {
		$(this).animate({ 'color': '#fe0', 'padding-left': '10' }, { queue: false, duration: 200 });
	}, function() {
		$(this).animate({ 'color': '#fff', 'padding-left': '0' }, { queue: false, duration: 200 });
	});
	
	$('.slug')
	.keyup( function() {
		$(this).val(
			$(this).val().toLowerCase().replace(/[\s\?\&\.\/\\\']/g,"_").replace(/_{2,}/g,"_")
		);
	});
	
	$('button.delete').click( function(ev) {
		if (confirm('Are you sure you want to delete this article?\nThis can NOT be undone.')) {
			window.location = 'admin_news.php?delete=' + $(this).attr('title');
		}
	});
	
});

