$(function(){	
	var dentroHeader = 0;
	$("#headerBar").mouseenter(function() { dentroHeader = 1; });
	$("#headerBar").mouseleave(function() { dentroHeader = 0; });
	
	$(document).mouseup(function(e){ if($("#headerBar").css("display")=="block" && !dentroHeader) { $("#buttonOpenCesta").removeClass("open"); $("#cestaPopUp").slideUp(300); }});
	
	$(".numeric").numeric(false);
	$(".numeric").blur(function(){ if(!($(this).val()>0)){ $(this).val("1"); }});
});

function initBar(p)
{
	switch (p)
	{
		case 0:
			$("#headerBar").css("top", "0px");
			$("#headerBar").css("display", "block");
			break;
		default:
			$("#headerBar").animate({top:0}, 600);
	}
}
