// JavaScript Document
//CREATED: 1212/2010
//Rev: 12162010
// Wilmer Ronin Lainez for Oddcast.com
//var nestTip;
var staticTipHome = new TipObj('staticTipHome');
with (staticTipHome)
	{
	template= '<div id="tooltipHldr" style="width: 250px; height:120px; padding:10px;">' +
	'<p class="orange" style="font-weight:bold;">About Voki Videos</p>' +
	'<p>These videos were created by teachers and students around the world. None of these videos were solicited or paid for by Voki.</p>' +
	'<p>To share a Voki video, email us at <a href"mailtto:submit@voki.com" class="orange">submit@voki.com</a>. Thank you for enjoying and supporting Voki!</p><br /><br />'+
	'</div>';

 // HIERARCHIAL TIPS: To call one tip object from within another tip object, make sure you
 // pass the a reference to the current object as the second parameter to the show() function.
 
	tips.links = new Array(-100, -150, 100, ''); //container array for tooltip items
	tipStick = 0; // stick the tooltip to the mouse on mouse out
}

var staticTip = new TipObj('staticTip');
with (staticTip)
	{
	template= '<div id="tooltipHldr">' +
	'<p class="orange" style="font-weight:bold;">30-Day  Money Back Guarantee</p>' +
	'<p>We know you will love Voki Classroom and we want you to be fully confident in your purchase. If you are unsatisfied for any reason, simply request a refund within 30 days and we will refund the full amount of your purchase, no questions asked! </p>' +
	'</div>';
 
	tips.links = new Array(-100, -150, 100, '');
	tipStick = 0;
}

var staticTipMulClass = new TipObj('staticTipMulClass');
with (staticTipMulClass)
	{
	template= '<div id="multiClasstooltipHldr">' +
	'<p class="orange" style="font-weight:bold;">Multiple Classes</p>' +
	'<p>Each teacher can add up to 10 classes in Voki Classroom. Students can be assigned to multiple classes.</p>' +
	'</div>';
 
	tips.links = new Array(-5, -20, 0, '');
	tipStick = 0;
}

var staticTipMulLess = new TipObj('staticTipMulLess');
with (staticTipMulLess)
	{
	template= '<div id="multiClasstooltipHldr">' +
	'<p class="orange" style="font-weight:bold;">Multiple Lessons</p>' +
	'<p>Within each Class, teachers can add multiple Lessons. Every student assigned to a Class is also assigned to all Lessons in that Class.</p>' +
	'</div>';
 
	tips.links = new Array(-5, -20, 0, '');
	tipStick = 0;
}

var staticTipMulStud = new TipObj('staticTipMulStud');
with (staticTipMulStud)
	{
	template= '<div id="multiClasstooltipHldr">' +
	'<p class="orange" style="font-weight:bold;">Multiple Students</p>' +
	'<p>Voki Classroom lets teachers add up to 200 students, and automatically creates a Voki Classroom login for each student.</p>' +
	'</div>';
 
	tips.links = new Array(-5, -20, 0, '');
	tipStick = 0;
}

var staticTipMulAccounts = new TipObj('staticTipMulAccounts');
with (staticTipMulAccounts)
	{
	template= '<div id="multiClassAccounttooltipHldr">' +
	'<p class="orange" style="font-weight:bold;">Multiple Accounts</p>' +
	'<p>When purchasing Voki Classroom accounts for multiple teachers, take advantage of additional discounts. Purchasing 5 to 9 accounts activates an additional 10% discount. Purchasing 10 or more accounts activates an additional 15% discount.</p>' +
	'<p>When choosing your Voki Classroom account type, select "Multiple Accounts". Then, simply specify the name and email of each teacher who should receive an account. Those teachers will each receive an email with the details of their Voki Classroom account.' +
	'</div>';
 
	tips.links = new Array(-5, -20, 0, '');
	tipStick = 0;
}
