$(document).ready(function(){

	$("a[rel='gallery']").colorbox();
	
	$(".album img, .albumList img").css('opacity', 0.6);
	$(".album img, .albumList img").hover(
		function(){
			$(this).stop().animate({'opacity':1}, 300);
		}, 
		function(){
			$(this).stop().animate({'opacity':0.6}, 300);
		}
	);
	

/** 
 * Font Replacement
 */
 
	// Bebas
	Cufon.set('fontFamily', 'Bebas');
	Cufon('#nav a', {hover:true});
	
	
	// Helvetica Neue
	Cufon.set('fontFamily', 'Helvetica Neue');
	Cufon('.postTitle h2');
});
