	BLIP.Class.create("BLIP.Controls.HomeThumbInfo", BLIP.Controls.Control, 
		function(config) {
			var thisContext = this;
			$(document).ready(function(){	
			     thisContext.initialize();
			});
		}, 
		{
		
			bindClickthrus: function() {
				$(".Thumb").each(function() {
					$(this).click(function() {
						var href = $(this).children("a").attr("href");
						document.location = href;
					});
				});
			},
		
			bindThumbHover: function() {
				var thisObj = this;
				$(".Thumb").hover(function() {
					$(".Thumb .ThumbInfo").fadeOut();
					$(this).children(".ThumbInfo").fadeIn();
				}, function() {
					$(".Thumb .ThumbInfo").fadeOut();
				});
			},
		
			initialize: function() {
				this.bindClickthrus();
				this.bindThumbHover();
			}
		}
	);	
