	// increase the default animation speed to exaggerate the effect
	$.fx.speeds._default = 500;
	$(function() {
		$( "#feed-dialog" ).dialog({
			autoOpen: false,
			show: "blind",
			height: 175,
			width: 100,
			modal: false,
			title: 'RSS Feeds'

		});

		$( "#feed-opener" ).click(function() {
			$( "#feed-dialog" ).dialog( "open" );
			return false;
		});
		
	        $( "#projects-dialog" ).dialog({
			autoOpen: false,
			show: "blind",
			height: 250,
			width: 300,
			modal: false,
			title: 'Current Projects'
		});

		$( "#projects-opener" ).click(function() {
			$( "#projects-dialog" ).dialog( "open" );
			return false;
		});
		
	});
