/*
 * HoverPod v1.0 - jQuery image banner
 * Copyright (c) 2008 Redweb Limited
 *
 * Built by Gavin Cooper gavincooper@redweb.com
 * Re-modified by Chris Dixon
 */
(function($) {  
	$.fn.hoverPod = function(options) {  
		this.each(function() {  
			var $this = $("a", this);        
		
			$(".tagline", $this).hide();
		
		    $this.hover(function() {
		        $(".tagline", this).slideToggle("slow");
		    },
		    function() {
		        $(".tagline", this).slideToggle("slow");
		    });
		
			return this; 
		}); // end each  
	}
})(jQuery);