var $j = jQuery.noConflict();
$j(document).ready(function() {
	// Hide Web Development Section
	$j("fieldset[id$='Section']").css("display","none");
	
	// Add onclick handler to checkbox w/id webDevelopment
	$j(":checkbox").click(function(){

		if($j('[id='+this.id+']').is(":checked"))
		{
			$j('fieldset[id='+this.id+'Section]').show("fast");
		}
		else
		{
			$j('fieldset[id='+this.id+'Section]').hide("fast");
		}
	});
});