$(document).ready(function(){
		$("dd").hide();
		$("dt a").click(function(){
			$("dd:visible").slideUp("slow");
			$(this).parent().next().slideDown("slow");
			
			return false;
		});
		
		$("dd ul li a").click(function(){
			$("input#VideoViewlocation").val($(this).attr("name"));
			$("input#VideoDownloadlocation").val($(this).attr("name"));
			
			return false;
		});
	});