window.addEvent('domready', function(){
	/*$$('#workshop_selection input.checkbox').addEvent('click', function(){
		var total = 0;
		$$('#workshop_selection td.price').each(function(el){
			var td = el.getParent().getFirst();
			var checkbox = td.getElement('input.checkbox');
			if (checkbox.checked == true)
			{
				var price = el.get('text');
				price = price.replace('$','').toInt();
				total += price;
			}
		});
		/*$('Subtotal').value = '$' + total;
		if ($('Scholarship_code').checked == true)
		{
			total -= 0;
		}
		$('Grand_total').value = '$' + total;
	});*/
	
	/*$$('p.slider').each(function(el){
		var slider = new Fx.Slide(el);
		slider.hide();
		
		var arr = el.getProperty('rel').split('|');
		$$('input[name=' + arr[0] +']').each(function(el1){
			el1.addEvent('click', function(){
				if (el1.id == arr[1])
				{
					slider.slideIn();
				} else
				{
					slider.slideOut();
				}
			});
		});
	});*/
});