
		document.write ('<style>.tool-tip {color: #fff; width: 139px; z-index: 13000;}</style>');
		document.write ('<style>.tool-title {font-weight: bold; font-size: 11px; color: #fff; background: url(gfx/bubble.png) top left; text-align: center; padding: 8px 8px 0px 8px;}</style>');
		document.write ('<style>.tool-text {font-size: 11px; background: url(gfx/bubble.png) bottom right; text-align: center; padding: 0px 8px 8px 8px;}</style>');
		document.write ('<!--[if lte ie 6]><style>.tool-title {background: url(gfx/bubble_ie.png); padding: 8px 0px 0px 0px;}</style><![endif]-->')
		document.write ('<!--[if lte ie 6]><style>.tool-text {background: url(gfx/bubble_ie.png); padding: 0px 0px 4px 0px;}</style><![endif]-->')
		document.write ('<style>.custom-tip {color: #000; width: 130px; z-index: 13000;}</style>');
		document.write ('<style>.custom-title {font-weight: bold; font-size: 11px; margin: 0; color: #3E4F14; padding: 8px 8px 0px 8px; background: #C3DF7D; border-bottom: 1px solid #B5CF74;}</style>');
		document.write ('<style>.custom-text {font-size: 11px; padding: 0px 8px 8px 8px; background: #CFDFA7;}</style>');

		window.addEvent('domready', function(){
			/* Tips 1 */
			var Tips1 = new Tips($$('.Tips1'));
			
			/* Tips 2 */
			var Tips2 = new Tips($$('.Tips2'), {
				initialize:function(){
					this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
				},
				onShow: function(toolTip) {
					this.fx.start(1);
				},
				onHide: function(toolTip) {
					this.fx.start(0);
				}
			});
			
			/* Tips 3 */
			var Tips3 = new Tips($$('.Tips3'), {
				showDelay: 400,
				hideDelay: 400,
				fixed: true
			});
			
			/* Tips 4 */
			var Tips4 = new Tips($$('.Tips4'), {
				className: 'custom'
			});
		}); 

