$(document).ready(function() {
	if (!($.browser.msie && ($.browser.version <= 7))) {
		setInterval(function() {
			// $(".phone").mask("8(999) 999-9999");
				$(".phone").each(function() {
					$(this).removeClass("phone");
				});

				$(".phone2").mask("8 (N99) 999-99-99", {
					edclass : "edmask"
				});
				$(".phone2").blur(function() {
					$(this).removeClass("edmask");
					// $(this).addClass("edmask");
					});
				$(".phone2").change(function() {
					$(this).addClass("edmask");
				});

				$(".phone2").each(function() {
					$(this).removeClass("phone2");
				});
				$(".int1").mask("9", {
					placeholder : ""
				});
				$(".int1").each(function() {
					$(this).removeClass("int1");
				});

				$(".int3").mask("999", {
					placeholder : ""
				});
				$(".int3").each(function() {
					$(this).removeClass("int3");
				});

				$(".int4").mask("9999", {
					placeholder : ""
				});
				$(".int4").each(function() {
					$(this).removeClass("int4");
				});

				$(".int5").mask("99999", {
					placeholder : ""
				});
				$(".int5").each(function() {
					$(this).removeClass("int5");
				});
				$(".int12").each(function() {
					set_format_price(this);
					$(this).removeClass("int12");
				});
			}, 1000);
	}
	setInterval(function() {
		$(".int12").each(function() {
			set_format_price(this);
			$(this).removeClass("int12");
		});
	}, 2000);
});

