window.addEvent('domready', function() {
	if ($('info-fc')) {
		var fcSticky = new StickyWin({
			content: $('info-fc-div'),
			relativeTo: $('info-fc'),
			position: 'bottomLeft',
			offset: {
				x: -86,
				y: 7
			}
		});
		fcSticky.hide();
		$('info-fc').addEvent('mouseenter', function() {
			fcSticky.show();
		});
		$('info-fc').addEvent('mouseleave', function() {
			fcSticky.hide();
		});
	}

	if ($('info-reo')) {
		var reoSticky = new StickyWin({
			content: $('info-reo-div'),
			relativeTo: $('info-reo'),
			position: 'bottomLeft',
			offset: {
				x: -86,
				y: 7
			}
		});
		reoSticky.hide();
		$('info-reo').addEvent('mouseenter', function() {
			reoSticky.show();
		});
		$('info-reo').addEvent('mouseleave', function() {
			reoSticky.hide();
		});
	}


	if ($('info-ss')) {
		var ssSticky = new StickyWin({
			content: $('info-ss-div'),
			relativeTo: $('info-ss'),
			position: 'bottomLeft',
			offset: {
				x: -86,
				y: 7
			}
		});
		ssSticky.hide();
		$('info-ss').addEvent('mouseenter', function() {
			ssSticky.show();
		});
		$('info-ss').addEvent('mouseleave', function() {
			ssSticky.hide();
		});
	}
	
	if ($('info-com')) {
		var comSticky = new StickyWin({
			content: $('info-com-div'),
			relativeTo: $('info-com'),
			position: 'bottomLeft',
			offset: {
				x: -86,
				y: 7
			}
		});
		comSticky.hide();
		$('info-com').addEvent('mouseenter', function() {
			comSticky.show();
		});
		$('info-com').addEvent('mouseleave', function() {
			comSticky.hide();
		});
	}


});
