// JavaScript Document
//This script adds tooltip balloons
//requires BeautyTips jQuery Plug-in http://www.lullabot.com/articles/announcing-beautytips-jquery-tooltip-plugin
//recommended inclusion for IE canvass element support ExplorerCanvas http://sourceforge.net/projects/excanvas/
function btips() {
  $('#sm1').bt("Hosted on our safe and secure servers. No need to figure out complex site hosting information.",
  {
  fill: "#90E200",
  strokeWidth: 1,
  strokeStyle: "#5EBA01",
  overlap: -5
  }
  );
  $('#sm2').bt("Monthly backups of your site made at the beginning of every month. Keeps your hard work protected.",
 {
    fill: "#90E200",
    strokeWidth: 1,
    strokeStyle: "#5EBA01",
    overlap: -5
    }
  );
$('#sm3').bt("Fast response time to any of your website questions.",
 {
    fill: "#90E200",
    strokeWidth: 1,
    strokeStyle: "#5EBA01",
    overlap: -5
    }
  );
$('#sm4').bt("Uses Best-of-Breed scanning software to protect your email accounts.",
 {
    fill: "#90E200",
    strokeWidth: 1,
    strokeStyle: "#5EBA01",
    overlap: -5
    }
  );
$('#sm5').bt("Administrative software gives you full control over your website's content in an easy-to-understand format. Add, edit and delete content at will. Never wait to change content again.",
 {
    fill: "#90E200",
    strokeWidth: 1,
    strokeStyle: "#5EBA01",
    overlap: -5
    }
  );
$('#sm6').bt("Choose anything from our gallery of themes for your site free or commission a unique custom site design for an additional cost.",
 {
    fill: "#90E200",
    strokeWidth: 1,
    strokeStyle: "#5EBA01",
    overlap: -5
    }
  );
$('#sm7').bt("Complete control of all aspects of your site member's or employee's site accounts.",
 {
    fill: "#90E200",
    strokeWidth: 1,
    strokeStyle: "#5EBA01",
    overlap: -5
    }
  );    
$('#sm8').bt("Site users or employees can create content to be published to the website.",
 {
    fill: "#90E200",
    strokeWidth: 1,
    strokeStyle: "#5EBA01",
    overlap: -5
    }
  );
$('#sm9').bt("Create a Contact Us form or allow the website users to request specific details about your products.",
 {
    fill: "#90E200",
    strokeWidth: 1,
    strokeStyle: "#5EBA01",
    overlap: -5
    }
  );
$('#sm10').bt("Sell products in a secured online store. Site visitors can pay via PayPal, or other Credit Card processors, such as Authorize.net. Requires SSL Certificate for $3/month, free with Premium Solution.",
 {
    fill: "#90E200",
    strokeWidth: 1,
    strokeStyle: "#5EBA01",
    overlap: -5
    }
  );
$('#sm11').bt("Display high quality photos in multiple galleries.",
 {
    fill: "#90E200",
    strokeWidth: 1,
    strokeStyle: "#5EBA01",
    overlap: -5
    }
  );
$('#sm12').bt("Display a detailed calendar of company notices and events for site visitors.",
 {
    fill: "#90E200",
    strokeWidth: 1,
    strokeStyle: "#5EBA01",
    overlap: -5
    }
  );
$('#sm13').bt("Allow site members to register for events. Pay-For events require Shopping Cart.",
 {
    fill: "#90E200",
    strokeWidth: 1,
    strokeStyle: "#5EBA01",
    overlap: -5
    }
  );
$('#sm14').bt("Create an online forum for your users to interact with each other. Often draws visitors back to the website daily.",
 {
    fill: "#90E200",
    strokeWidth: 1,
    strokeStyle: "#5EBA01",
    overlap: -5
    }
  );
$('#sm15').bt("Gives site members the ability to customize their profiles, maintian a buddy list and add user messaging.",
 {
    fill: "#90E200",
    strokeWidth: 1,
    strokeStyle: "#5EBA01",
    overlap: -5
    }
  );
$('#sm16').bt("Charge members a daily/monthly/yearly fee to access premium site content.",
 {
    fill: "#90E200",
    strokeWidth: 1,
    strokeStyle: "#5EBA01",
    overlap: -5
    }
  );
$('#sm17').bt("Sell advertising space to anyone. Display both text and image ads.",
 {
    fill: "#90E200",
    strokeWidth: 1,
    strokeStyle: "#5EBA01",
    overlap: -5
    }
  );
$('#sm18').bt("Upload and present online podcasts to your site visitors.",
 {
    fill: "#90E200",
    strokeWidth: 1,
    strokeStyle: "#5EBA01",
    overlap: -5
    }
  );
$('#sm19').bt("Upload and present online videos to your site visitors. Store them locally, or embed from YouTube and other online sites.",
 {
    fill: "#90E200",
    strokeWidth: 1,
    strokeStyle: "#5EBA01",
    overlap: -5
    }
  );
$('#sm20').bt("Publish and send newsletters to lists of subscribers.",
 {
    fill: "#90E200",
    strokeWidth: 1,
    strokeStyle: "#5EBA01",
    overlap: -5
    }
  );
}

if (window.attachEvent) {
	window.attachEvent("onload", btips);

} else { 
	window.addEventListener("load", btips, false);

}
