$(document).ready(function() {
  // CENTRIRAJ DONJI MENI
  var left_s = parseInt( $("#footer_menu").css('left') );
  var footer_width = parseInt( $("#footer").css('width') );
  var li_width = parseInt( $("#footer_menu li").css('width') );
  var li_num = parseInt( $("#footer ul#footer_menu li").size() );
  var left_e = parseInt( ( footer_width - ( li_width * li_num ) ) / 2 ) ;
  //$("#footer_menu").text("There are " + left_e + " ");
  $('#footer_menu').css('left', left_e);
});
