$(document).ready(
	function() {
    $(".results").css({opacity:"0.0", zIndex:1});
    $(".pointer").hover(
    	function () {
        $(".results").css({opacity:"0.00", zIndex:1}).stop()
	      var result = $("#" + this.id + "result")
	      var pos = $(this).position( )
	      var vtop =  30 - result.height() ;
	      var vleft =  25;
	      $(this).css({zIndex:1000})
	      $(result).css({top:vtop,left:vleft, zIndex:1000})
	      $(result).animate({opacity:"1.0"},500);
	    },
	    function (){
	        $(this).css({zIndex:1})
	        $(".results").css({opacity:"0.00", zIndex:1}).stop()
	    }
	  );
    $(".star_pointer").hover(
    	function () {
        $(".results").css({opacity:"0.00", zIndex:1}).stop()
	      var result = $("#" + this.id + "result")
	      var pos = $(this).position( )
	      var vtop =  30 - result.height() ;
	      var vleft =  25;
	      $(this).css({zIndex:1000})
	      $(result).css({top:vtop,left:vleft, zIndex:1000})
	      $(result).animate({opacity:"1.0"},500);
	    },
	    function (){
	        $(this).css({zIndex:1})
	        $(".results").css({opacity:"0.00", zIndex:1}).stop()
	    }
	  );
    $(".close").click(
    	function () { 
	      var result = $(this).parent()[0]

  	    $(result).css({opacity:"0.00", zIndex:1});
    	  $(".pointer").stop();
    	  $(".star_pointer").stop()
    	}
    );
	}
);