$(document).ready(function(){

 function pos_elem_center(elem) {
  var d_heigh = $(document).height();
  var c_heigh = $('#'+elem).height();
  $('#'+elem).css('margin-top', (d_heigh-c_heigh)/2);
 }

 pos_elem_center('container');

 $(window).bind('resize', function() {
  pos_elem_center('container');
 });

 $('#nav ul').not($('#nav li.on > ul', this)).hide();

 $('#nav > li > span').click(function() {
   $(this).parent('li').addClass("open");
   $('#nav ul').not($(this).next('ul')).slideUp('fast');
   $(this).next('ul').slideToggle('fast');
 });

 $("#nav li > span").hover(function(){
   $(this).addClass("hover");
 },function(){
   $(this).removeClass("hover");
 });


 $('#item_other_capacity').hide();

 $('#capacity').change(function(){

  var _selectedObj = $(this).children("option[@selected]");
  if(_selectedObj.val() == 'other') {
   $('#item_other_capacity').show();
  } else {
   $('#item_other_capacity').hide();
  }

 });

});
