		// attach hover to fanbuzz;		
		
		// Fan buzz top 10 category script
		$(function() {
			$("#top_10_area li").each(function(i) {
				$(this).hover(function(){
						thisEl = this;
						showTopInfo(thisEl);
					},function(){
						$(this).find(".top10-info").hide();
				});					
			});
			// append pointer image div;
			$(".top10-info").append("<div class='pointer'></div>");					
		});		

		function showTopInfo(el) {
			// get location of movie 			
			var offset = $(el).offset({ scroll: true });
			var areaOffset = $("#top_10").offset({ scroll: true });
			// location of element - location of containing div = info bubble position;
			currLeft = offset.left-areaOffset.left+60;
			currTop = offset.top-areaOffset.top+40;
			currInfo = $(el).find(".top10-info");
			$(currInfo).css("top",(currTop+"px")).css("left",(currLeft+"px")).show();	
		}

		