var buvo_uzejes = false;

function createCookie(name,value,days) {
	if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else  { 
	document.cookie = name+"="+value+""+"; path=/";
	}
}


$(document).ready(function() {
 
 $("#added_to_cart").mouseover(function() {   
    clearTimeout( mmm );
    buvo_uzejes = true;
 });

  $("#added_to_cart").mouseout(function() {      
    if (buvo_uzejes) { 
      //$("#added_to_cart").fadeOut("normal"); 
      mmm = setTimeout(function(){$("#added_to_cart").fadeOut("normal");}, 100);
    }
  }); 
  
  
});
  
    

function addtocart(x) {
  var pr_kiek = document.getElementById("qtt_"+x).value;
  if (pr_kiek>0) {
  var pr_model = document.getElementById("prod_"+x).value;
  var cname="cart_items["+x+"]";
  createCookie(cname, pr_kiek, 5);
  $("#added_to_cart").fadeIn("normal");
  $("#pr_kiek").text( pr_kiek );
  $("#pr_model").text( pr_model );
  mmm = setTimeout(function(){$("#added_to_cart").fadeOut("normal");}, 2000);
  } else { alert('Please enter 1 or more'); }
}

