$(function() {
		$("#accPrograms").accordion({
			event: "mouseover"
		});
	});

$.fx.speeds._default = 1000;
	$(function() {
		$('#10smart').dialog({
			autoOpen: false,
			show: 'blind',
			modal: true,
			width: 830,
			height: 690
		});
		
		$('#openModal').click(function() {
			$('#10smart').dialog('open');
			return false;
		});
	});

