$(function(ev){
	$('#termsAccept').click(function(ev){
		
		//console.log((this).attr('checked'));
		
		if($(this).attr('checked')){
			$('.vip-buttons .book-now').removeClass('inactive');
		}else{
			$('.vip-buttons .book-now').addClass('inactive');
		}
	});
	
	$('.book-now').click(function(ev){
		if($(this).hasClass('inactive')){
			ev.preventDefault();
			ev.target.blur();
		}
		
	})
	
	$('.corner').corner();
})

