$(function(){
	$('#cpd-record-edit-form').validate();

	$('#hpc-audit-form').validate();

	$('.more-tip').not('.hpc').click(function(){
		var rel	= $(this).attr('rel');
		var target = "/assets/html/ajax/cpd-helper.html "+rel;
		$(rel).load(target, function(){
			//add the close button back in as .load wipes everything out...
			//$(this).prepend("<a href='#' class='big-tip-close close'>close</a>");
		});
		
	});

	$('.more-tip.hpc').click(function(){
		var rel	= $(this).attr('rel');
		var target = "/assets/html/ajax/hpc-helper.html "+rel;
		$(rel).load(target, function(){
			//add the close button back in as .load wipes everything out...
			//$(this).prepend("<a href='#' class='big-tip-close close'>close</a>");
		});
	});

	$('#cpd-delete-record-button').click(function(e){
		if(!confirm('Delete record entry - are you sure?')){
			e.preventDefault();
		}
	});

	$('#summary-tip').load("/assets/html/ajax/hpc-helper.html #summary-tip");
});
