	
		
	
		
	//TODO: Extract to base class or common .js file.  Class names may need to be updated to ensure uniqueness	
	//TODO: Config values should be variables to eliminate duplication		
		Window.onDomReady(function() {
		var imagex;
		var productnamex;
		var imagey;
		var productnamey;
		var csproductnamex;
		var csproductnamey;
		var csimagex;
		var csimagey;
		
		if((navigator.userAgent.indexOf("Mac") != -1)&& (-1 != navigator.userAgent.indexOf("Safari")))
		{
		    
		    imagex=380;
		    imagey=380;
		    productnamex=450;
		    productnamey=380;
		    csproductnamex=170;
		    csproductnamey=-170;
		    csimagex=140;
		    csimagey=-170;
		}
		else
		{
		    imagex=68;
		    imagey=-80;
		    productnamex=160;
		    productnamey=-70;
		    csproductnamex=90;
		    csproductnamey=-70;
		    csimagex=40;
		    csimagey=-70;
		}
		if(navigator.userAgent.indexOf("Firefox")!=-1)
		{
		    imagey=-150;
		    csimagey=-120;
		}
		var tips1=new Tips($$('.CQWP-image'),{
		showDelay: 1000,
		hideDelay: 400,
		fixed: true,
		offsets: {x:imagex, y:imagey}
		});
		
		var tips2=new Tips($$('.productname'),{
		showDelay: 1000,
		hideDelay: 400,
		fixed: true,
		offsets: {x:productnamex, y:productnamey}
		});
		var tips3=new Tips($$('.comingsoon-productname'),{
		showDelay: 1000,
		hideDelay: 400,
		fixed: true,
		offsets: {x:csproductnamex, y:csproductnamey}
		});
		var tips3=new Tips($$('.comingsoon-image'),{
		showDelay: 1000,
		hideDelay: 400,
		fixed: true,
		offsets: {x:csimagex, y:csimagey}
		});
		
		});	
		
		


