
$(document).ready(function(){
	$('.infobox').fadeIn(1500);
	
	$('.infoboxClose').click(
		function() {
			$(this).parent().parent().fadeOut(1500);
		}
	);
	
	$('.deactivate').click(function() {
		return confirm('Deseja realmente excluir este website da lista?');
	});
	
	$('#noBudget').change(function() {
		if($('#noBudget').is(':checked')) {
			$('#budget').attr('disabled', 'disabled');
		} else {
			$('#budget').removeAttr('disabled');
		}
	});
});

