var h3_login = $('#theme-my-login-3 h3').text();

if(h3_login == "Register" || h3_login == "Lost Password") {
  $('#theme-my-login1').css('display', 'block');
}


//chowanie login/register
var bodylogin = $("body").hasClass('logged-in');
if(bodylogin) {
}
else {
$("#theme-my-login-3 h3").click(function () {
  var tml = $("#theme-my-login1").css("display");
  if(tml == "none") {
  $("#theme-my-login1").animate({ height: 'show', opacity: 'show' }, 200);
  }
  if(tml != "none") {
  $("#theme-my-login1").animate({ height: 'hide', opacity: 'hide' }, 200);
  }
  return true;  
});

$("body").click(function () {
    $("#theme-my-login1").animate({ height: 'hide', opacity: 'hide' }, 200);
  });

$('#theme-my-login1').click(function(event){
     event.stopPropagation();
 });
$('#theme-my-login-3 h3').click(function(event){
     event.stopPropagation();
 }); 
  
}



//pusty koszyk
if($('#eshopw_cart-3').length == 0) {
  $("#search-2").after("<li id='eshopw_cart-3' style='width:120px;height:80px;background:url(http://www.mronthewall.com/wp-content/themes/mr/images/empty.png) no-repeat;'></li>");

  
}

