var categoryText_Azure = "Bring a touch of the Mediterranean to the table with the Denby Azure Range. Cool aquamarine reminiscent of the cool waters of the Med, accented with pieces from the Azure Coast range to truly bring your collection to life. Try the cool, calming, summer colours of our Azure range for yourself."; var categoryId_Azure = "1203"; var categoryText_BlueJetty = "Blue Jetty will be discontinued as of February 1, 2009"; var categoryId_BlueJetty = "1204"; var categoryText_Caramel = "Warm and comforting, Caramel by Denby is the ultimate feel-good range. Mix Caramel and Caramel Stripes to create a warm, appetizing look for any dining occasion. Available now in our drinking, eating, serving and cooking ranges. "; var categoryId_Caramel = "1206"; var categoryText_China = "Crisp, simple and yet satisfyingly gorgeous, our collection of Denby China complements any dinner party. Elegant white serving dishes and salad bowls, dinner sets to champagne flutes, this collection of china will guarantee a stunning dining occasion adding an extra touch of class."; var categoryId_China = "1207"; var categoryText_Fire = "Let Fire and Fire Chilli from Denby spice up your dining. Fire comprises warm, rich, yet natural colours whilst the Fire Chilli Range adds that little bit of spice. This collection is a treat for winter. Fire by Denby - perfect for hot cups of cocoa and real winter puddings, stew and dumplings, you decide."; var categoryId_Fire = "1211"; var categoryText_Glassware = "Stop press!! As well as our gorgeous tableware, Denby makes stunning glassware too. Tumblers, wine glasses and champagne flutes - our glassware is made specifically to complement our individual ranges.

P.S. Champagne flutes also make great wedding gifts!"; var categoryId_Glassware = "1336"; var categoryText_Greenwich = "Rich, strong tones of sea green create the bold colour of Denby Greenwich. Glazed to perfection the striking tones of Greenwich really come to life in a wide range of cooking dishes, ramekins and casserole dishes. "; var categoryId_Greenwich = "1213"; var categoryText_ImperialBlue = "Bold and uncompromising the Imperial Blue range from Denby is one of our largest ranges. If you want to make a statement then this is the tableware for you. Vibrant blues and crisp whites work perfectly together complementing your food and surroundings alike. Take a closer look at the range view now."; var categoryId_ImperialBlue = "1214"; var categoryText_Jet = "The original Jet Collection combines a smart defined look with a touch of elegance. Matt and Gloss finishes combine to create a stylish, eye catching look whether for serving coffee or hosting a dinner party. Urban style brought to your home by Denby Jet. And if you like Denby Jet you’ll love Jet Dots and Jet Stripes."; var categoryId_Jet = "1215"; var categoryText_Linen = "Linen from Denby is fresh, clean and light, its creamy neutral tones blending effortlessly into any colour scheme. Ideal for everyday living and special occasions, Denby Linen combines simple, classic shapes with a soothing colour scheme, ideal for any modern lifestyle."; var categoryId_Linen = "1216"; var categoryText_Merlot = "Tasty shades of deep berry and a velvety finish make Merlot the ideal partner for mouth-watering meals. With classic shapes and signature Gourmet pieces, eating in has never been so stylish."; var categoryId_Merlot = "1333"; var categoryText_NEW!Mist = "Indulge your senses with Mist. Dreamy Shades of chalk blue to accent with the warmer lines of Mist Falls."; var categoryId_NEW!Mist = "1354"; var categoryText_RegencyGreen = "When people think of Denby, Regency Green has got to be one of the most well known ranges. Its subtle natural green watercolours blend with any neutral setting for a fresh invigorating look. Collect the Regency Green collection from Denby, order online for delivery to your door."; var categoryId_RegencyGreen = "1217"; var categoryText_Serve = ""; var categoryId_Serve = "1218"; var categoryText_Truffle = "Intense and smooth, Truffle is the new range from Denby. Gorgeous shades of mushroom and cream are just perfect for comfort food. Enhance your collection with Truffle Layers, a soothing accent range with subtle brushstrokes."; var categoryId_Truffle = "1335"; var categoryText_White = "If modern, chic and minimalist is the look you wish to achieve, then this is the collection for you. Choosing white pottery will enhance whatever the style of food you are serving and will also fit into any colour scheme. Presentation is everything so treat your self to the Denby White collection."; var categoryId_White = "1221"; var categoryText_WhiteTrace = "White Trace will be discontinued as of February 1, 2009"; var categoryId_WhiteTrace = "1222"; var sweetTitles = { xCord : 0, // @Number: x pixel value of current cursor position yCord : 0, // @Number: y pixel value of current cursor position tipElements : ['a','abbr','acronym'], // @Array: Allowable elements that can have the toolTip obj : Object, // @Element: That of which you're hovering over tip : Object, // @Element: The actual toolTip itself active : 0, // @Number: 0: Not Active || 1: Active init : function() { if ( !document.getElementById || !document.createElement || !document.getElementsByTagName ) { return; } var i,j; this.tip = document.createElement('div'); this.tip.id = 'toolTip'; document.getElementsByTagName('body')[0].appendChild(this.tip); this.tip.style.top = '0'; this.tip.style.visibility = 'hidden'; var tipLen = this.tipElements.length; for ( i=0; i 25 ? anch.href.toString().substring(0,25)+"..." : anch.href); var access = ( anch.accessKey ? ' ['+anch.accessKey+'] ' : '' ); } else { addy = anch.firstChild.nodeValue; } //this.tip.innerHTML = "

"+anch.getAttribute('tip')+"

"; // +""+access+addy+"

"; var anchorId = this.obj.id; if ((anchorId + " ").substring(0,4)=="ddl_") { var ddlRangeId = anchorId.replace("ddl_", ""); this.tip.innerHTML = "

"+eval("categoryText_" + ddlRangeId)+"

"; } else if ((anchorId + " ").substring(0,4)=="rng_") { var rngRangeId = anchorId.replace("rng_", ""); this.tip.innerHTML = "

"+eval("categoryText_" + rngRangeId)+"

"; } if ( parseInt(document.documentElement.clientWidth+document.documentElement.scrollLeft) < parseInt(this.tip.offsetWidth+lt) ) { this.tip.style.left = parseInt(lt-(this.tip.offsetWidth+10))+'px'; } else { this.tip.style.left = lt+'px'; } if ( parseInt(document.documentElement.clientHeight+document.documentElement.scrollTop) < parseInt(this.tip.offsetHeight+tp) ) { this.tip.style.top = parseInt(tp-(this.tip.offsetHeight+10))+'px'; } else { this.tip.style.top = tp+'px'; } this.tip.style.visibility = 'visible'; this.tip.style.opacity = '.1'; this.tipFade(10); }, tipFade: function(opac) { var passed = parseInt(opac); var newOpac = parseInt(passed+10); if ( newOpac < 100 ) { this.tip.style.opacity = '.'+newOpac; this.tip.style.filter = "alpha(opacity:"+newOpac+")"; opacityID = window.setTimeout("sweetTitles.tipFade('"+newOpac+"')",20); } else { this.tip.style.opacity = '1.0'; this.tip.style.filter = "alpha(opacity:100)"; } } }; function pageLoader() { sweetTitles.init(); } addEvent(window,'load',pageLoader);