		jQuery(function(){
			jQuery('ul.sf-menu').superfish({
	            delay:       600,                            // one second delay on mouseout
	            animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation
	            speed:       'fast',                          // faster animation speed
	            autoArrows:  false,                           // disable generation of arrow mark-up
	            dropShadows: false                            // disable drop shadows
	        });
		});

		window.onload = function()
		{
		  settings = {
			  tl: { radius: 13 },
			  tr: { radius: 13 },
			  bl: { radius: 13 },
			  br: { radius: 13 },
			  antiAlias: false,
			  autoPad: false,
			  validTags: ['div']
		  }

		  var myBoxObject = new curvyCorners(settings, 'rankingheader_off');
		  myBoxObject.applyCornersToAll();

		  settings1 = {
			  tl: { radius: 11 },
			  tr: { radius: 11 },
			  bl: { radius: 13 },
			  br: { radius: 13 },
			  antiAlias: true,
			  autoPad: false,
			  validTags: ['div']
		  }

		  var divObj1 = document.getElementById('accountMenuBar');
		  var myBoxObject1 = new curvyCorners(settings1, divObj1);
		  myBoxObject1.applyCornersToAll();

		  settings2 = {
			  tl: { radius: 13 },
			  tr: { radius: 13 },
			  bl: { radius: 13 },
			  br: { radius: 13 },
			  antiAlias: true,
			  autoPad: true,
			  validTags: ['div']
		  }
		  var divObj2 = document.getElementById('resolutionaccount');
		  var myBoxObject2 = new curvyCorners(settings2, divObj2);
		  myBoxObject2.applyCornersToAll();

		}