$(function() {
	$('a:not(:has(img))').filter(function() {
		return this.hostname && this.hostname !== location.hostname;
	}).addClass('external').attr({
		target: "_blank",
		title: "Opens in a new window"
	});
	
	$('.edit').editable('admin/save.php', {
		 indicator : 'Saving...',
		 tooltip   : 'Click to edit...'
	});
	
	$('.edit_area').editable('admin/save.php', { 
		type      : 'textarea',
		cancel    : 'Cancel',
		submit    : 'OK',
		indicator : '<img src="../assets/img/indicator.gif"/>',
		tooltip   : 'Click to edit...'
	});
	
	$('#captcha ~ a').click(function(){
		var s = $('#captcha').attr('src').replace(/sid=(.+)/i,'sid='+Math.random());
		$('#captcha').attr('src',s);
		return false;
	});
});

