// Modified and taken from ui_demos.js
$(function(){
	// Panorama Dialog			
	$('#panoramaDialog').dialog({
		modal: true,
		overlay: {
			opacity: 0.7,
			background: "black"
			},
		draggable: false,
		resizable: false,
		autoOpen: false,
		// Width is 20px larger than image width
		width: 620,
		buttons: false
	});
	// Panorama Dialog Link
	$('#panoramaDialog_link').click(function(){
		$('#panoramaDialog').dialog('open');
		return false;
	});
	//hover states on the static widgets
	$('#panoramaDialog_link').hover(
		function() { $(this).removeClass('ui-state-hover'); }, 
		function() { $(this).removeClass('ui-state-hover'); }
	);
});
