$(document).ready(function(){ 

	$('#photoGallery').cycle();

	$('#images a').click(function() {
		var $image = $(this);

		preload_image = new Image();
		preload_image.src = $image.attr('href');

		$('.attachment-alternate').fadeOut(1000, function() {
	 	 $('.attachment-alternate').attr({'src': $image.attr('href')});
	 	 $('.attachment-alternate').fadeIn(1000);
	});
		return false;
	});


	$('A[rel="external"]').click(function() {
		window.open($(this).attr('href'));
		return false;
	});



	$(".binarym").fadeTo(10,.2);
	
	$(".binarym").hover(function() {
		$(this).fadeTo(1000,1)
	}, function() {
		$(this).fadeTo(1000,.2)
	});
}); 

Cufon.replace('#content h2');
Cufon.replace('#content h3');
Cufon.replace('#content h4');
Cufon.replace('#header h3');
