﻿function setToolTips(){
		new MooTooltips({
			hovered:'.tooltipWithRating',		// the element that when hovered shows the tip
			ToolTipClass:'starPanelRating',	// tooltip display class
			toolTipPosition:-1, // -1 top; 1: bottom - set this as a default position value if none is set on the element
			sticky:false,		// remove tooltip if closed
			fromTop: 0,		// distance from mouse or object
			fromLeft: -155,	// distance from left
			duration: 200,		// fade effect transition duration
			fadeDistance: 10    // the distance the tooltip starts the morph
		});	
		new MooTooltips({
			hovered:'.tooltipWithoutRating',		// the element that when hovered shows the tip
			ToolTipClass:'starPanelNoRating',	// tooltip display class
			toolTipPosition:-1, // -1 top; 1: bottom - set this as a default position value if none is set on the element
			sticky:false,		// remove tooltip if closed
			fromTop: 0,		// distance from mouse or object
			fromLeft: -155,	// distance from left
			duration: 200,		// fade effect transition duration
			fadeDistance: 10   // the distance the tooltip starts the morph
		});	
	};
