// JavaScript Document

$(document).ready(function() {
	
	var dialogContent = '<p>Words, images and design copyright &copy; 2010 Allison B. Corbett.</p>';
	dialogContent += '<p>willowtree.net uses floral brushes by <a href="http://www.obsidiandawn.com" target="_blank">Obsidian Dawn</a> and <a href="http://www.mehrdaddesign.com" target="_blank">Mehrdad Design</a> and circuit brushes by <a href="http://photoshopthings.wordpress.com" target="_blank">Avlor</a>.</p>';
	dialogContent += 'Icons are from the <a href="http://www.woothemes.com/2009/09/woofunction-178-amazing-web-design-icons/" target="_blank">woofunction</a> and <a href="http://p.yusukekamiyamane.com" target="_blank">Fugue</a> sets.</p>';
	dialogContent += '<p>Blog powered by <a href="http://www.mangoblog.org">Mango Blog</a>.</p>';
	
	var $dialog = $('<div></div>')
		.html(dialogContent)
		.dialog({
			autoOpen: false,
			modal: true,
			width: 500,
			title: 'Credits'
		});

	$('#creditsLink').click(function() {
		$dialog.dialog('open');
		// prevent the default action, e.g., following a link
		return false;
	});
});
