// JavaScript Document
$(document).ready(function() {
// webcast functions
	$('#webcast-links-topics').add('#webcast-links-results').add('#webcast-links-samples').dialog( {
			autoOpen: false,
			bgiframe: true,
			width: 600,
			modal: true
	});
	$('#webcast-links a[href=#webcast-links-topics]').click( function(){ 
		$('#webcast-links-topics').dialog('open');
		return false;
	});
	$('#webcast-links a[href=#webcast-links-results]').click( function(){ 
		$('#webcast-links-results').dialog('open');
		return false;
	});
	$('#webcast-links a[href=#webcast-links-samples]').click( function(){ 
		$('#webcast-links-samples').dialog('open');
		return false;
	});	
});
