$(document).ready(function(){
	if ( $.browser.msie && $.browser.version == '6.0' ) {
		//fix PNGs in IE6
		$("body").pngFix();
	}
	
	
	
	
	$("ul#navigation li").hover(
		function(){
			$(this).children("ul").show();
		},
		function(){
			$(this).children("ul").hide();
		}
	);
	
	
	$("input[name=radio_customer_level]").change(function(){
		

		if ( $(this).val() == '1' ) {
			$("dd#customer-level-dcp").hide().find("select").attr("disabled", true);
			$("dd#customer-level-dentist").show().find("select").attr("disabled", false);
		}
		else {
			$("dd#customer-level-dentist").hide().find("select").attr("disabled", true);
			$("dd#customer-level-dcp").show().find("select").attr("disabled", false);
		}
		
		
	
	});
	
	
	
	$("#cpd_subject_id").change(function(){
			
		if ( $(this).val() == '0' ) {
			$(".core").hide();
			$(".hours").show();
		}
		else {
			$(".core").show();
			$(".hours").hide();
		}
		
		
	
	});
	
	
	$(".hours_type").change(function(){
		
	
		if ( $("#core").attr('checked') == true ) {
			$(".core").show().attr("disabled", false);
		}
		else {
			$(".core").hide().attr("disabled", true);
		}
		
		
	
	});
	
	
});
