			  gloader.load(["glow", "1", "glow.anim", "glow.net", "glow.dom"],
        {

            onLoad: function(glow) {

			/* only need this */
			  currentDegrees = "cent";
			
			  glow.ready(function() {glow.dom.get('.fahr').addClass('hide');
			  	glow.events.addListener('#changeDegrees', 'click', function() {
					  
					  if (currentDegrees == "cent") {
					  	glow.dom.get('.cent').addClass('hide');
						glow.dom.get('.fahr').removeClass('hide');						
						currentDegrees = "fahr";
					  } else {
					  	glow.dom.get('.fahr').addClass('hide');
						glow.dom.get('.cent').removeClass('hide');											  
						currentDegrees = "cent";						
					  }
	
				});
				
				/* only need this */
				
			  });
			
			/* only need this */
			  currentDegrees = "less";
			
			  glow.ready(function() {glow.dom.get('.more').addClass('hide');
			  	glow.events.addListener('#moreDetails', 'click', function() {
					  
					  if (currentDegrees == "less") {
					  	glow.dom.get('.less').addClass('hide');
						glow.dom.get('.more').removeClass('hide');	
						glow.dom.get('#moreDetails').removeClass('inactive').addClass('active');					
						currentDegrees = "more";
					  } else {
					  	glow.dom.get('.more').addClass('hide');
						glow.dom.get('.less').removeClass('hide');
						glow.dom.get('#moreDetails').removeClass('active').addClass('inactive');									  
						currentDegrees = "less";						
					  }
	
				});
				
				/* only need this */
				
			  });
			
			
            }
        }
);	