$(document).ready(function(){

	// fix PNGs for IE6
	$(document).pngFix(); 

	// quick lightbox link rewrite
	$(".slideshow span").text("View Slideshow");

	// fancybox - single images
	$('.larger-image a').fancybox({
		'hideOnContentClick': true,
		'imageScale': true,
		'zoomSpeedIn': 400,
		'zoomSpeedOut': 400,
		'overlayShow': true,
		'overlayOpacity': .8
	});

	// Textile help for comments
	$(".form.comment .textile").hide();
	$(".form.comment span.help").wrapInner("<a href='' title=''></a>");
	$(".form.comment span.help a").click(function(event){
		$(".form.comment .textile").slideToggle("fast");
		return false;
	});

	// pretty typography
	Cufon.replace
	('#tagline')
	('#nav li', {hover:true})
	('#subnav h4', {hover:true})
	('h1', {hover:true})
	('h2', {hover:true})
	('h3', {hover:true})
	('.footer-nav h4', {hover:true})
	('.footer-nav.site li', {hover:true});

});