YUI().use('node', 'event', 'io', function (Y) {

	Y.on("domready", function() {
				
		var dropDown = Y.one("#breadcrumbnav ul li.dropdown");
		
		if (dropDown) {
			
			var uri = '/i/regional/v11/html/otherregions.html';
		
			Y.io(uri, {
				context: this, 
				on: { 
					success: function(tid,response) { 
												
						Y.one("#breadcrumbnav").append(response.responseText);
												
						var otherRegions = Y.one("#ddOtherRegions");
		
						if (otherRegions) {						
						
							dropDown.on("mouseenter", function(e) { 
								e.preventDefault();
								otherRegions.setStyle('display', 'block');
							});
							
							otherRegions.on("mouseleave", function(e) {
								otherRegions.setStyle('display','none');
							});
							
						}				
						
						
					}
				}
			});	

		}
	
	});	
		
});
