$(document).ready(function() {
  $('.menuelem').bind("mouseenter",function(){
    $(this).parent().find('.menu-move').animate({left: '-15px'}, 100);
  });
  $('.menuelem').bind("mouseleave",function(){
    $(this).parent().find('.menu-move').animate({left: '-7px'}, 100); 
  });  
  $(".clearbox").parent().hide();
});

  function resizeSubmenu(elem)
  {
  	menuLeftMargin = $('#menu_top_body').offset().left;
  
  	submenuLeftMargin = elem.offset().left;
  	widthLeft =980-(submenuLeftMargin-menuLeftMargin);
  	elem.find('.submenuelem').css('width',widthLeft+'px');
  }
  
function logout_ls(){
  window.location.replace('./index.php?state=pagelogout&target={$smarty.get.target}&params={$smarty.get.params}'); 
} 
function login_ls(){
  $('#box_log').show(200); 
} 
function verify_ls(){ 	
	if ($('#login_user').val().length<1) {    
    window.alert('{/literal}{#LOGIN_NAME_ERR#}{literal}');
    $('#login_user').focus();
	} else if ($('#login_pass').val().length<4) {
    window.alert('{/literal}{#LOGIN_PASS_ERR#}{literal}');
    $('#login_pass').focus();
  } else {
    $('#login_form').submit();
  }
}

