﻿var CertifiedPlatinum = new Class({
	initialize : function( element,relativeTo ) {
		
		this.popup = new StickyWin({
			content: "<div id='certifiedPlatinumpopup'><img src='/content/v1/us/img/ph_home.png'/></div>",
			relativeTo: $(relativeTo),
			offset:{x:220,y:300},
			edge:'upperLeft',
			position:'upperLeft'
		});
		this.popup.hide();

		$(element).addEvent('mouseover',function(e){
			this.popup.show();
		}.bind(this));

		$(element).addEvent('mouseout',function(e){
			this.popup.hide();
		}.bind(this));
	}

});