  $(function() {
    $('#nav').droppy({speed: 100});
  });

  $("#location_select li").hover(
    function () {
      $(this).addClass("over");
    },
    function () {
      $(this).removeClass("over");
    }
  );
	$(function($) {
	    var options={
	        utc: true,
	        utc_offset: 2
	      };
	    $('.jclock').jclock(options);
	});

