jQuery(document).ready(function($) {
    
	$('#main_nav a').click(function(e){
		
		// Modify current status of main nav
		$('#main_nav a').removeClass('current');
		$(this).addClass('current');
		
		// Modify visibility of posts
		var classChosen = $(this).attr('rel');
		$('.post').each(function(){
			if($(this).hasClass(classChosen) || classChosen == 'all'){
				$(this).fadeIn();
			} else {
				$(this).fadeOut();
			}
		});
		
		e.preventDefault();
		
	});
	
	$('a.post_link')
		.tooltip({
			relative: true,
			offset: [15,0]
			//onShow: function(){
			//	this.getTrigger().parent().find('.instructions').slideDown();
			//},
			//onHide: function(){
			//	this.getTrigger().parent().find('.instructions').slideUp();
			//}
		})
		.overlay({
			mask: {
				color: '#000',
				loadSpeed: 200,
				opacity: 0.5
			},
			zIndex: 1
		})
		.hover(function(){
				$(this).parent().find('.instructions').slideDown();
			},
			function(){
				$(this).parent().find('.instructions').slideUp();
			}
		);

});
