$(document).ready(function() {
		
		$(function(){
			$('#quote_archive').masonry({
  		singleMode: true, 
  		itemSelector: '.archive_entry' 
			});
		});
		
		$(function(){
			$('.columnator').columnize({columns: 3}); 
		});
 
	 	$(function(){
			$(".equalize").equalHeights();
			$(".equalizer").equalHeights();
		});	
		
		$(function(){
			$("#featured_area").hover(
				function(){
				$(this).find('.title_frame').fadeIn(250);
				},
				function(){
				$(this).find('.title_frame').fadeOut(250);
			}
			);
		});
		
		$(function(){
			$("#featured_area").hover(
				function(){
				$(this).find('.potw_frame').animate({ width: 'show' });
				},
				function(){
				$(this).find('.potw_frame').fadeOut(250);
			}
			);
		});
		
		
		$(function(){
		$('.quote_authors_list').hide();
		$('.quote_subjects_list').hide();
		$('a#hide_authors').hide();
		$('a#hide_subjects').hide();
		
		$('a#show_authors').click(
		function() { 
		$('.quote_authors_list').show('slow'); 
		$('a#show_authors').fadeOut('slow');
		$('a#hide_authors').fadeIn('slow'); 
     return false;
    });
    
		$('a#hide_authors').click(
		function() { 
		$('.quote_authors_list').hide('slow'); 
		$('a#hide_authors').fadeOut('slow');
		$('a#show_authors').fadeIn('slow'); 
     return false;
    });
    
    $('a#show_subjects').click(
		function() { 
		$('.quote_subjects_list').show('slow'); 
		$('a#show_subjects').fadeOut('slow');
		$('a#hide_subjects').fadeIn('slow'); 
     return false;
    });
    
		$('a#hide_subjects').click(
		function() { 
		$('.quote_subjects_list').hide('slow'); 
		$('a#hide_subjects').fadeOut('slow');
		$('a#show_subjects').fadeIn('slow'); 
     return false;
    });
		 
    
    
  });

	
	
});

