			var browser = navigator.appName;
			var b_version = navigator.appVersion;
			var version = parseFloat(b_version);
			var timer;

			function stopTimer()
			{
			    timer = clearTimeout(timer);
			}
			if ((browser == "Microsoft Internet Explorer") && (version <= 6)){
				$(document).ready(function() {
					if(typeof(allowBundles) == 'undefined' || !allowBundles)
					{
						$('.sticky_device').cluetip({width:800, positionBy: 'fixed', topOffset: 29, leftOffset:-340, showTitle:true, sticky: true, closePosition: 'title', arrows: false, mouseOutClose: true, dropShadow: true, dropShadowSteps:3, cluetipClass: 'menu' /*, hoverIntent: false*/ });
						$('.sticky_design').cluetip({width:800, positionBy: 'fixed', topOffset: 29, leftOffset:-460, showTitle:true, sticky: true, closePosition: 'title', arrows: false, mouseOutClose: true, dropShadow: true, dropShadowSteps:3, cluetipClass: 'menu' /*, hoverIntent: false*/ });
					}
					else
					{
						$('.sticky_device').cluetip({width:800, positionBy: 'fixed', topOffset: 29, leftOffset:-268, showTitle:true, sticky: true, closePosition: 'title', arrows: false, mouseOutClose: true, dropShadow: true, dropShadowSteps:3, cluetipClass: 'menu' /*, hoverIntent: false*/ });
						$('.sticky_design').cluetip({width:800, positionBy: 'fixed', topOffset: 29, leftOffset:-346, showTitle:true, sticky: true, closePosition: 'title', arrows: false, mouseOutClose: true, dropShadow: true, dropShadowSteps:3, cluetipClass: 'menu' /*, hoverIntent: false*/ });
					}
					$('.sticky_device').bind("mouseleave", function() {
					    stopTimer();
						timer = setTimeout(function(){$(document).trigger('hideCluetip');}, 400);
					});
					$('.sticky_design').bind("mouseleave", function() {
					    stopTimer();
						timer = setTimeout(function(){$(document).trigger('hideCluetip');}, 400);
					});
					$('.sticky_device').bind("mouseenter", function() {
						stopTimer();
						$(document).trigger('hideCluetip');
					});
					$('.sticky_design').bind("mouseenter", function() {
						stopTimer();
						$(document).trigger('hideCluetip');
					});
				});
			}else{
				$(document).ready(function() {
					if(!allowBundles)
					{
						$('.sticky_device').cluetip({width:800, positionBy: 'fixed', topOffset: 29, leftOffset:-340, showTitle:true, sticky: true, closePosition: 'title', arrows: false, mouseOutClose: true, dropShadow: true, dropShadowSteps:3, cluetipClass: 'menu', hoverIntent: false });
						$('.sticky_design').cluetip({width:800, positionBy: 'fixed', topOffset: 29, leftOffset:-460, showTitle:true, sticky: true, closePosition: 'title', arrows: false, mouseOutClose: true, dropShadow: true, dropShadowSteps:3, cluetipClass: 'menu', hoverIntent: false });
					}
					else
					{
						$('.sticky_device').cluetip({width:800, positionBy: 'fixed', topOffset: 29, leftOffset:-268, showTitle:true, sticky: true, closePosition: 'title', arrows: false, mouseOutClose: true, dropShadow: true, dropShadowSteps:3, cluetipClass: 'menu', hoverIntent: false });
						$('.sticky_design').cluetip({width:800, positionBy: 'fixed', topOffset: 29, leftOffset:-346, showTitle:true, sticky: true, closePosition: 'title', arrows: false, mouseOutClose: true, dropShadow: true, dropShadowSteps:3, cluetipClass: 'menu', hoverIntent: false });
					}
					$('.sticky_device').bind("mouseleave", function() {
					    stopTimer();
						timer = setTimeout(function(){$(document).trigger('hideCluetip');}, 400);
					});
					$('.sticky_design').bind("mouseleave", function() {
					    stopTimer();
						timer = setTimeout(function(){$(document).trigger('hideCluetip');}, 400);
					});
					$('.sticky_device').bind("mouseenter", function() {
						stopTimer();
						//$(document).trigger('hideCluetip');
					});
					$('.sticky_design').bind("mouseenter", function() {
						stopTimer();
						//$(document).trigger('hideCluetip');
					});
				});
			}

			$(document).ready(function() {
			  $('div.html, div.jquery').next().css('display', 'none').end().click(function() {
				$(this).next().toggle('fast');
			  });
			  
			  $('a.false').click(function() {
				return false;
			  });
			});

