
// Lightbox Help Icons
jQuery(document).ready(function(){
	jQuery("#Help1").colorbox({width:"30%",inline:true,href:"#Box1"});
	jQuery("#Help2").colorbox({width:"30%",inline:true,href:"#Box2"});
	jQuery("#Help3").colorbox({width:"30%",inline:true,href:"#Box3"});
	jQuery("#Help4").colorbox({width:"30%",inline:true,href:"#Box4"});
});

// Checkout Toggle Panels
jQuery(document).ready(function(){
	jQuery("h4.Toggle").click(function(){
		jQuery(this).toggleClass("Active").next().slideToggle("normal");
		return false;
	});
});

// Toggle Afleveradres
jQuery(document).ready(function(){
	jQuery("#ExtraFields").css("display","none"); //Hide div w/id extra
	jQuery("#CheckBox").click(function(){ // Add onclick handler to checkbox w/id checkme
		if (jQuery("#CheckBox").is(":checked")){  // If checked
			jQuery("#ExtraFields").show("fast"); //show the hidden div
		}
		else {	   
			jQuery("#ExtraFields").hide("fast"); //otherwise, hide it 
		}
	});
});
