/********************************************

yourfavoriteletter.com
jQuery for Functions

Version: 1.0
Required Plugins: none
Author: Phillip Zelnar (http://www.pzelnar.com)        	

*******************************************/



//Hover Effects

$(document).ready(function(){ 
			
	
	$(".archived").click(
		function() {
			$(this).find(".result").slideToggle(200);
			$(this).find(".voting").slideToggle(200);
		}
	);
	
	$(".pending, .active").hover(
		function() {
			$(this).find(".result").slideUp(200);
			$(this).find(".voting").slideDown(200);
			$(this).find("#subscription").hide();
		},
		function() {
			$(this).find(".result").slideDown(200);
			$(this).find(".voting").slideUp(200);
			$(this).find("#subscription").hide();
			return false;
		}
	);
	
	$("#subscribe").click(
		function() {
			$(".pending .result").hide();
			$(".pending .voting").hide();
			$(".pending #subscription").slideDown(200);
			return false;
		}
	);

});