function init() {
	var myTips = new Tips($S('.showtooltip'), {
        //maxTitleChars: 50, //I like my captions a little long
        maxOpacity: .9, //let's leave a little transparancy in there
        className: "tooltip"
    });
}

window.onload = function() {
        init();
}


