Sigizmund2012,
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="http://lexxus.github.io/jq-timeTo/js/jquery.timeTo.min.js"></script>
<link rel="stylesheet" type="text/css" media="screen" href="http://lexxus.github.io/jq-timeTo/stylesheets/stylesheet.css">
<link rel="stylesheet" type="text/css" media="screen" href="http://lexxus.github.io/jq-timeTo/stylesheets/timeTo.css">
<style type="text/css">
#countdown{
margin: 70px;
}
</style>
<script>
$(function() {
var b = [5, 4, 3, 2, 1, 7, 6],
a = new Date,
d = a.getHours(),
c = a.getDay(),
b = new Date(a.getFullYear(), a.getMonth(), a.getDate() + (5 != c || d ? b[c] : 0), 1, 0, 0);
$("#countdown").timeTo({
timeTo: b,
displayDays: 2,
theme: "white",
displayCaptions: !0,
fontSize: 48,
captionSize: 14,
lang: "ru"
})
});
</script>
</head>
<body>
<div id="countdown"></div>
</body>
</html>