$(function(){	
	$('.confirm_button').click(function(e) {
		if (!confirm($(this).attr('title'))) e.preventDefault();
	});
	
	$('#ajax-bg').css({
		'opacity' : '0.6',
		'border-radius' : '5px'
	});
	
	$('#header div').css({
		'background' : 'black',
		'opacity' : '0.6',
		'border-radius' : '5px'
	});
});
