$(function(ev){
	$('#termsAccept').click(function(ev){
		
		//console.log((this).attr('checked'));
		
		if($(this).attr('checked')){
			$('.book-now').removeClass('inactive');
		}else{
			$('.book-now').addClass('inactive');
		}
	});
	
	$('.book-now').click(function(ev){
		if($(this).hasClass('inactive')){
			ev.preventDefault();
			ev.target.blur();
		}
		
	})	
	
	$('video,audio').mediaelementplayer(/* Options */);
	
	$('.downloadFileButton').click(function(){
		id = $(this).getId();
		SIV.ajaxCall({
			url: '/ajax/download/file/',
			postData: {'id':id}
		});
	})
	
})
