/*
 * Paul Wolborsky - Design2Market - CHPS - May 2009
 * 
 * Check for cookie indicating user agreed to end-user agreement
 */
$(document).ready(function () {
	var agreed = $.cookie('enduser');
	if (agreed==undefined) {
		window.location.href = 'terms_and_conditions';
	}
});