// modal* disclaimer dialog box
if(false){
	$(document).ready(function(){
		$.blockUI({ message: $('#modal'), css: { 
					border: 'none', 
					padding: '15px', 
					backgroundColor: '#FFF', 
					'-webkit-border-radius': '10px', 
					'-moz-border-radius': '10px', 
					opacity: '.95', 
					color: '#000' 
				}}); 	
	});
}
$(function modal() { 

	$('#yes').click(function() { 
		$.unblockUI(); 
		window.location="/part-d-guide/";
		return false; 
	}); 
	 
}); 
