	$(document).ready(function(){
							   
	  $("#slider").easySlider({
			controlsBefore:	'<p class="controls">',
			controlsAfter:	'</p>',
			auto: true, 
			continuous: true,
			pause: 5000
			
	  });
							   
	  $(":text").labelify();
	  $(":password").labelify();
	  
      $('#location-button').click(function() {

		return; // xxx

      $("#location-button").attr("src","/images/location-button-selected.png");
		 
	  $('#locations-select').slideDown('slow', function() {
		 });   
	  });
	  

      $('#location').mouseleave(function() {
	
		return; // xxx
	
	
		  $('#locations-select').slideUp('slow', function() {
			$("#location-button").attr("src","/images/location-information.png");
		  });   
	  });
	   
	});

