$(document).ready(function() {
	
	
	// Clear & Refill fields
	//autoFill($("#realname"), "Name");

	function autoFill(id, v){
		$(id).css({ color: "#b2adad" }).attr({ value: v }).focus(function(){
			if($(this).val()==v){
				$(this).val("").css({ color: "#333" });
			}
		}).blur(function(){
			if($(this).val()==""){
				$(this).css({ color: "#b2adad" }).val(v);
			}
		});
	}
	
	
	
	
	$("input.session-68").click(function () {
		if ($(this).is(":checked")) {
			alert("Little Bear's drop off time is Thursday, 3-5pm.");
		} 
	});
	$("input.session-70").click(function () { 
		if ($(this).is(":checked")) {
			alert("Great Bear ENDS a DAY EARLY. \n\nPick up time is Friday, 3-5pm. ");
		}
		 
	});
	


});



function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "external")
     anchor.target = "_blank";
 }
}
window.onload = externalLinks;




