<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>
Шементом.Ру - Все
</title>
<meta content="" name="keywords">
<meta content="" name="description">
<link href="https://www.shementom.ru/templates/simple/images/style.css" rel="stylesheet" type="text/css">
<script language="JavaScript" type="text/JavaScript">
<!--
var http = createRequestObject();
function createRequestObject()
{
var ro;
var browser = navigator.appName;
if(browser == "Microsoft Internet Explorer")
{
ro = new ActiveXObject("Microsoft.XMLHTTP");
}
else
{
ro = new XMLHttpRequest();
}
return ro;
}
function digResponse()
{
if(http.readyState == 4)
{
var response = http.responseText;
returned = response.split('|');
if(response.indexOf('|' != -1))
{
var id=returned[1];
var numdigs=returned[2];
var status=returned[0];
if(status == '1')
{
document.getElementById('digbut'+id).innerHTML = 'Окей';
document.getElementById('numdigs'+id).innerHTML = numdigs;
}
else if(status == '2')
{
document.getElementById('digbut'+id).innerHTML = 'Окей';
}
else if(status == '0')
{
document.getElementById('digbut'+id).innerHTML = '<a href="https://www.shementom.ru/login.php">Вход<\/a>';
}
}
}
}
function cdigResponse()
{
if(http.readyState == 4)
{
var response = http.responseText;
returned = response.split('|');
if(response.indexOf('|' != -1))
{
var id=returned[1];
var numdigs=returned[2];
var status=returned[0];
if(status == '1')
{
document.getElementById('comd'+id).innerHTML = numdigs+' раз';
document.getElementById('cup'+id).className = 'opacityit';
document.getElementById('cdown'+id).className = 'opacityit';
}
else if(status == '2')
{
// Already dug comment
document.getElementById('cup'+id).className = 'opacityit';
document.getElementById('cdown'+id).className = 'opacityit';
}
else if(status == '0')
{
document.getElementById('comd'+id).innerHTML = '<a href="https://www.shementom.ru/login.php">Вход<\/a>';
}
}
}
}
function buryResponse()
{
if(http.readyState == 4)
{
var response = http.responseText;
returned = response.split('|');
if(response.indexOf('|' != -1))
{
var id=returned[1];
var status=returned[0];
if(status == '0')
{
document.getElementById('digbut'+id).innerHTML = '<a href="https://www.shementom.ru/login.php">Вход<\/a>';
}
else
{
document.getElementById('storyb'+id).style.filter = "Alpha(Opacity=80)";
document.getElementById('storyb'+id).style.opacity = ".2";
document.getElementById('digbut'+id).innerHTML = 'Убитые';
document.getElementById('storyb'+id).disabled = true;
}
}
}
}
function dig(id)
{
document.getElementById('digbut'+id).innerHTML = '...';
http.open('get', 'https://www.shementom.ru/dig.php?i='+id);
http.onreadystatechange = digResponse;
http.send(null);
}
function digcom(comment_id,dir,story_id)
{
http.open('get', 'https://www.shementom.ru/dig.php?type=comm&i='+comment_id+'&story='+story_id+'&dir='+dir);
http.onreadystatechange = cdigResponse;
http.send(null);
if(dir == 0)
{
dispcomment(comment_id,false,0);
}
}
function bury_story(id)
{
if(0 == 0)
{
document.getElementById('digbut'+id).innerHTML = '<a href="https://www.shementom.ru/login.php">Вход<\/a>';
return;
}
http.open('get', 'https://www.shementom.ru/bury.php?i='+id);
http.onreadystatechange = buryResponse;
http.send(null);
}
function inclickcheck(field,def,val)
{
if(field.value == def)
{
field.value = val;
}
}
function changeuser(field,but)
{
if(field.value == '')
{
document.getElementById(but).disabled = true;
}
else
{
document.getElementById(but).disabled = false;
}
}
function checkavail(field)
{
username = document.getElementById(field).value;
if(username.length < 4)
{
document.getElementById('availres').innerHTML = 'Имя пользователя "'+username+'" слишком короткое';
return;
}
else if(username.length > 16)
{
document.getElementById('availres').innerHTML = 'Имя пользователя "'+username+'" слишком длинное';
return;
}
http.open('get', 'https://www.shementom.ru/signup.php?avail='+username);
http.onreadystatechange = availResponse;
http.send(null);
}
function availResponse()
{
if(http.readyState == 4)
{
var response = http.responseText;
returned = response.split('|');
if(response.indexOf('|' != -1))
{
var username=returned[0];
var status=returned[1];
if(status == 1)
{
document.getElementById('availres').innerHTML = 'Имя пользователя "'+username+'" доступно';
}
else
{
document.getElementById('availres').innerHTML = 'Извините, Имя пользователя "'+username+'" занято';
}
}
}
}
function dispcomment(id,show,ctype)
{
if(ctype == 0)
{
if(show)
{
document.getElementById('commdesc'+id).style.display = '';
document.getElementById('commbut'+id).innerHTML = 'Убитые [<a href="javascript:dispcomment('+id+',false,0);">Скрыть комментарии</a>]';
}
else
{
document.getElementById('commdesc'+id).style.display = 'none';
document.getElementById('commbut'+id).innerHTML = 'Убитые [<a href="javascript:dispcomment('+id+',true,0);">Показать комментарии</a>]';
}
}
else if(ctype == 1)
{
if(show)
{
document.getElementById('commdesc'+id).style.display = '';
document.getElementById('commbut'+id).innerHTML = 'Порог [<a href="javascript:dispcomment('+id+',false,1);">Скрыть комментарии</a>]';
}
else
{
document.getElementById('commdesc'+id).style.display = 'none';
document.getElementById('commbut'+id).innerHTML = 'Порог [<a href="javascript:dispcomment('+id+',true,1);">Показать комментарии</a>]';
}
}
}
function openWindow(theURL,winName,features)
{
window.open(theURL,winName,features);
}
function comreply(id,nickname)
{
if(0 == 0)
{
alert('Please login before replying');
return;
}
document.getElementById('creply').style.display = '';
document.getElementById('replynick').innerHTML = nickname;
document.getElementById('parentid').value = id;
}
function replycancel()
{
document.getElementById('creply').style.display = 'none';
document.getElementById('replynick').innerHTML = '';
document.getElementById('parentid').value = '0';
}
//-->
</script>
<style type="text/css">
<!--
#tabsB
{
float:right;
width:100%;
background:#FFFFFF;
font-size:93%;
line-height:normal;
}
#tabsB ul
{
margin:0;
padding:0px 0px 0 0px;
list-style:none;
float:right;
}
#tabsB li
{
display:inline;
margin:0;
padding:0;
}
#tabsB a
{
float:left;
background:url("https://www.shementom.ru/templates/simple/images/tableftB.gif") no-repeat left top;
margin:0;
padding:0 0 0 4px;
text-decoration:none;
}
#tabsB a span
{
float:left;
display:block;
background:url("https://www.shementom.ru/templates/simple/images/tabrightB.gif") no-repeat right top;
padding:5px 15px 4px 6px;
color:#666;
}
#tabsB a span
{
float:none;
}
#tabsB a:hover span
{
color:#000;
}
#tabsB a:hover
{
background-position:0% -42px;
}
#tabsB a:hover span
{
background-position:100% -42px;
}
#tabsB #current a
{
background-position:0% -42px;
}
#tabsB #current a span
{
background-position:100% -42px;
}
.digbox
{
background-image:url(https://www.shementom.ru/templates/simple/images/digg_back.jpg);
}-->
</style>
</head>
<body>
<table align="center" border="0" cellpadding="0" cellspacing="0" width="700">
<tbody>
<tr>
<td height="50" valign="top">
<span class="headlogo">
<a class="headlogo" href="https://www.shementom.ru/">
Шементом.Ру
</a>
</span>
</td>
<td align="right" style="padding-top:10px;" valign="top" width="200">
<form action="https://www.shementom.ru/search.php" method="get" name="form1" style="padding:0px;margin:0px;">
<input id="q" name="q" onblur="inclickcheck(this,'','Поиск');" onfocus="inclickcheck(this,'Поиск','');" type="text" value="Поиск">
<input name="Submit" type="submit" value="Go">
</form>
</td>
</tr>
</tbody>
</table>
<table align="center" border="0" cellpadding="0" cellspacing="0" width="700">
<tbody>
<tr>
<td width="8">
<img height="32" src="https://www.shementom.ru/templates/simple/images/anounce_left.gif" width="8">
</td>
<td background="https://www.shementom.ru/templates/simple/images/anounce_back.gif">
<span class="anounce" style="padding-left:10px;">
Добро пожаловать :)
</span>
</td>
<td width="8">
<img height="32" src="https://www.shementom.ru/templates/simple/images/anounce_right.gif" width="8">
</td>
</tr>
</tbody>
</table>
<br>
<br>
<table align="center" border="0" cellpadding="0" cellspacing="0" width="700">
<tbody>
<tr>
<td valign="top" width="200">
<a href="https://www.shementom.ru/signup.php">
Регистрация
</a>
<br>
<a href="https://www.shementom.ru/login.php">
Вход
</a>
<br>
<a href="https://www.shementom.ru/add_story.php">
Прислать
</a>
<br>
<a href="https://www.shementom.ru/html.php?id=terms">
Правила сайта
</a>
<br>
<a href="https://www.shementom.ru/contact.php">
Контакты
</a>
<br>
<br>
<strong>
Категории
</strong>
<br>
<br>
<a href="https://www.shementom.ru/viewall/1.html">
Все
</a>
<br>
<a href="https://www.shementom.ru/view/18/avtomobili/1.html">
Автомобили
</a>
<br>
<a href="https://www.shementom.ru/view/11/bezopasnost/1.html">
Безопасность
</a>
<br>
<a href="https://www.shementom.ru/view/5/video/1.html">
Видео
</a>
<br>
<a href="https://www.shementom.ru/view/12/drugoe/1.html">
Другое
</a>
<br>
<a href="https://www.shementom.ru/view/19/zarabotok/1.html">
Заработок
</a>
<br>
<a href="https://www.shementom.ru/view/7/igry/1.html">
Игры
</a>
<br>
<a href="https://www.shementom.ru/view/16/knigi/1.html">
Книги
</a>
<br>
<a href="https://www.shementom.ru/view/3/mir-i-biznes/1.html">
Мир и бизнес
</a>
<br>
<a href="https://www.shementom.ru/view/15/muzyka/1.html">
Музыка
</a>
<br>
<a href="https://www.shementom.ru/view/2/nauka/1.html">
Наука
</a>
<br>
<a href="https://www.shementom.ru/view/14/programmy/1.html">
Программы
</a>
<br>
<a href="https://www.shementom.ru/view/6/razvlecheniya/1.html">
Развлечения
</a>
<br>
<a href="https://www.shementom.ru/view/4/sport/1.html">
Спорт
</a>
<br>
<a href="https://www.shementom.ru/view/1/tehnologii/1.html">
Технологии
</a>
<br>
<a href="https://www.shementom.ru/view/13/filmy/1.html">
Фильмы
</a>
<br>
<a href="https://www.shementom.ru/view/17/yumor/1.html">
Юмор
</a>
<br>
<br>
<br>
</td>
<td valign="top">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody>
<tr>
<td width="25">
<a href="https://www.shementom.ru/xmlfeeds.php?cmd=popular">
<img border="0" height="20" src="https://www.shementom.ru/templates/simple/images/feed_icon.gif" width="20">
</a>
</td>
<td>
<span class="pagetitle">
Все
</span>
</td>
<td width="350">
<div id="tabsB">
<ul>
<li id="current">
<a href="https://www.shementom.ru/viewall/1.html">
<span>
Популярные
</span>
</a>
</li>
<li>
<a href="https://www.shementom.ru/upcoming/0/viewall/1.html">
<span>
Входящие
</span>
</a>
</li>
</ul>
</div>
</td>
</tr>
<tr>
<td bgcolor="#dedede" height="1">
</td>
<td bgcolor="#dedede" height="1">
</td>
<td bgcolor="#dedede" height="1">
</td>
</tr>
</tbody>
</table>
<br>
<br>
<table cellpadding="0" cellspacing="0" style="padding-bottom:20px;" width="100%">
<tbody>
<tr id="storyb1">
<td align="left" valign="top" width="65">
<table border="0" cellpadding="0" cellspacing="0" class="digbox">
<tbody>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="52">
<tbody>
<tr>
<td align="center" height="28" valign="bottom">
<div class="digs" id="numdigs1">
38
</div>
</td>
</tr>
<tr>
<td align="center" height="24" valign="middle">
<span class="digg">
раз
</span>
</td>
</tr>
<tr>
<td height="2">
</td>
</tr>
<tr>
<td align="center" height="25">
<div class="digit" id="digbut1">
<a href="javascript:dig(1);">
Вверх
</a>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
<td valign="top">
<div>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody>
<tr>
<td valign="top">
<a href="https://www.shementom.ru/stories/1/osp-kak-dostat-kvartiru.html">
ОСП. Как достать квартиру
</a>
</td>
</tr>
<tr>
<td height="20">
<table border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td width="21">
<img src="https://www.shementom.ru/images/avatars/s1.jpg">
</td>
<td>
<span class="subline">
прислано
<a href="https://www.shementom.ru/users/1/Telepat/1.html">
Telepat
</a>
5990 days ago (vsepuchkom.ru)
</span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td valign="top">
«О.С.П. Как достать квартиру» – законный правопреемник юмористического квеста «33 квадратных метра. Война с соседями», вновь дает игроку анс отточить мастерство кознестроения и приколоустройства.
</td>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td valign="bottom">
<span class="bottomlinks">
<a href="https://www.shementom.ru/stories/1/osp-kak-dostat-kvartiru.html#comments">
14 Комментарии
</a>
-
<a href="https://www.shementom.ru/stories/1/osp-kak-dostat-kvartiru.html">
Читать все
</a>
-
<a href="javascript:bury_story(1);">
Грохнуть
</a>
Тема:
<a href="https://www.shementom.ru/view/6/razvlecheniya/1.html">
Развлечения
</a>
</span>
</td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
<!--<tr><td colspan="2"> </td></tr>-->
</tbody>
</table>
<table cellpadding="0" cellspacing="0" style="padding-bottom:20px;" width="100%">
<tbody>
<tr id="storyb74145">
<td align="left" valign="top" width="65">
<table border="0" cellpadding="0" cellspacing="0" class="digbox">
<tbody>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="52">
<tbody>
<tr>
<td align="center" height="28" valign="bottom">
<div class="digs" id="numdigs74145">
18
</div>
</td>
</tr>
<tr>
<td align="center" height="24" valign="middle">
<span class="digg">
раз
</span>
</td>
</tr>
<tr>
<td height="2">
</td>
</tr>
<tr>
<td align="center" height="25">
<div class="digit" id="digbut74145">
<a href="javascript:dig(74145);">
Вверх
</a>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
<td valign="top">
<div>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody>
<tr>
<td valign="top">
<a href="https://www.shementom.ru/stories/74145/notnaya-galereya.html">
Нотная галерея
</a>
</td>
</tr>
<tr>
<td height="20">
<table border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td width="21">
<img src="https://www.shementom.ru/templates/simple/images/noavatar16x16.gif">
</td>
<td>
<span class="subline">
прислано
<a href="https://www.shementom.ru/users/40065/costyacrotov/1.html">
costyacrotov
</a>
5146 days ago (notesgallery.com)
</span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td valign="top">
NotesGallery - удобно структурированная нотная галерея. Тысячи разнообразных нот на любой вкус. Также к Ва ему вниманию представлены некоторые факты о композиторах и исполнителях, новости и обзоры мира музыки.
</td>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td valign="bottom">
<span class="bottomlinks">
<a href="https://www.shementom.ru/stories/74145/notnaya-galereya.html#comments">
7 Комментарии
</a>
-
<a href="https://www.shementom.ru/stories/74145/notnaya-galereya.html">
Читать все
</a>
-
<a href="javascript:bury_story(74145);">
Грохнуть
</a>
Тема:
<a href="https://www.shementom.ru/view/6/razvlecheniya/1.html">
Развлечения
</a>
</span>
</td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
<!--<tr><td colspan="2"> </td></tr>-->
</tbody>
</table>
<table cellpadding="0" cellspacing="0" style="padding-bottom:20px;" width="100%">
<tbody>
<tr id="storyb89898">
<td align="left" valign="top" width="65">
<table border="0" cellpadding="0" cellspacing="0" class="digbox">
<tbody>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="52">
<tbody>
<tr>
<td align="center" height="28" valign="bottom">
<div class="digs" id="numdigs89898">
18
</div>
</td>
</tr>
<tr>
<td align="center" height="24" valign="middle">
<span class="digg">
раз
</span>
</td>
</tr>
<tr>
<td height="2">
</td>
</tr>
<tr>
<td align="center" height="25">
<div class="digit" id="digbut89898">
<a href="javascript:dig(89898);">
Вверх
</a>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
<td valign="top">
<div>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody>
<tr>
<td valign="top">
<a href="https://www.shementom.ru/stories/89898/1680-tekstovyh-stiley-dlya-photoshop.html">
1680 текстовых стилей для Photoshop
</a>
</td>
</tr>
<tr>
<td height="20">
<table border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td width="21">
<img src="https://www.shementom.ru/templates/simple/images/noavatar16x16.gif">
</td>
<td>
<span class="subline">
прислано
<a href="https://www.shementom.ru/users/46332/fveffect/1.html">
fveffect
</a>
5089 days ago (fotovideoeffect.com)
</span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td valign="top">
1680 текстовых стилей для Photoshop | 32 Mb
</td>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td valign="bottom">
<span class="bottomlinks">
<a href="https://www.shementom.ru/stories/89898/1680-tekstovyh-stiley-dlya-photoshop.html#comments">
8 Комментарии
</a>
-
<a href="https://www.shementom.ru/stories/89898/1680-tekstovyh-stiley-dlya-photoshop.html">
Читать все
</a>
-
<a href="javascript:bury_story(89898);">
Грохнуть
</a>
Тема:
<a href="https://www.shementom.ru/view/0/vse/1.html">
Все
</a>
</span>
</td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
<!--<tr><td colspan="2"> </td></tr>-->
</tbody>
</table>
<table cellpadding="0" cellspacing="0" style="padding-bottom:20px;" width="100%">
<tbody>
<tr id="storyb89899">
<td align="left" valign="top" width="65">
<table border="0" cellpadding="0" cellspacing="0" class="digbox">
<tbody>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="52">
<tbody>
<tr>
<td align="center" height="28" valign="bottom">
<div class="digs" id="numdigs89899">
19
</div>
</td>
</tr>
<tr>
<td align="center" height="24" valign="middle">
<span class="digg">
раз
</span>
</td>
</tr>
<tr>
<td height="2">
</td>
</tr>
<tr>
<td align="center" height="25">
<div class="digit" id="digbut89899">
<a href="javascript:dig(89899);">
Вверх
</a>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
<td valign="top">
<div>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody>
<tr>
<td valign="top">
<a href="https://www.shementom.ru/stories/89899/smotret-treylery.html">
Смотреть трейлеры
</a>
</td>
</tr>
<tr>
<td height="20">
<table border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td width="21">
<img src="https://www.shementom.ru/templates/simple/images/noavatar16x16.gif">
</td>
<td>
<span class="subline">
прислано
<a href="https://www.shementom.ru/users/44635/bankiru2011/1.html">
bankiru2011
</a>
5089 days ago (kino-novinki.com)
</span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td valign="top">
На сайте всегда свежая информация об ожидаемых премьерах. Хотите посмотреть ТВ? Пожалуйста! У нас все каналы работают.
</td>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td valign="bottom">
<span class="bottomlinks">
<a href="https://www.shementom.ru/stories/89899/smotret-treylery.html#comments">
13 Комментарии
</a>
-
<a href="https://www.shementom.ru/stories/89899/smotret-treylery.html">
Читать все
</a>
-
<a href="javascript:bury_story(89899);">
Грохнуть
</a>
Тема:
<a href="https://www.shementom.ru/view/5/video/1.html">
Видео
</a>
</span>
</td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
<!--<tr><td colspan="2"> </td></tr>-->
</tbody>
</table>
<table cellpadding="0" cellspacing="0" style="padding-bottom:20px;" width="100%">
<tbody>
<tr id="storyb89900">
<td align="left" valign="top" width="65">
<table border="0" cellpadding="0" cellspacing="0" class="digbox">
<tbody>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="52">
<tbody>
<tr>
<td align="center" height="28" valign="bottom">
<div class="digs" id="numdigs89900">
19
</div>
</td>
</tr>
<tr>
<td align="center" height="24" valign="middle">
<span class="digg">
раз
</span>
</td>
</tr>
<tr>
<td height="2">
</td>
</tr>
<tr>
<td align="center" height="25">
<div class="digit" id="digbut89900">
<a href="javascript:dig(89900);">
Вверх
</a>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
<td valign="top">
<div>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody>
<tr>
<td valign="top">
<a href="https://www.shementom.ru/stories/89900/ruchnaya-burovaya-ustranovka-prigotovlenie-b.html">
Ручная буровая устрановка. Приготовление б
</a>
</td>
</tr>
<tr>
<td height="20">
<table border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td width="21">
<img src="https://www.shementom.ru/templates/simple/images/noavatar16x16.gif">
</td>
<td>
<span class="subline">
прислано
<a href="https://www.shementom.ru/users/43914/nikiackew/1.html">
nikiackew
</a>
5089 days ago (burenie-vsem.ru)
</span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td valign="top">
Частозадаваемые вопросы по бурению скважин. Как пробурить скважину. Как купить установку для бурения скважин на воду.
</td>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td valign="bottom">
<span class="bottomlinks">
<a href="https://www.shementom.ru/stories/89900/ruchnaya-burovaya-ustranovka-prigotovlenie-b.html#comments">
10 Комментарии
</a>
-
<a href="https://www.shementom.ru/stories/89900/ruchnaya-burovaya-ustranovka-prigotovlenie-b.html">
Читать все
</a>
-
<a href="javascript:bury_story(89900);">
Грохнуть
</a>
Тема:
<a href="https://www.shementom.ru/view/6/razvlecheniya/1.html">
Развлечения
</a>
</span>
</td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
<!--<tr><td colspan="2"> </td></tr>-->
</tbody>
</table>
<table cellpadding="0" cellspacing="0" style="padding-bottom:20px;" width="100%">
<tbody>
<tr id="storyb369044">
<td align="left" valign="top" width="65">
<table border="0" cellpadding="0" cellspacing="0" class="digbox">
<tbody>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="52">
<tbody>
<tr>
<td align="center" height="28" valign="bottom">
<div class="digs" id="numdigs369044">
15
</div>
</td>
</tr>
<tr>
<td align="center" height="24" valign="middle">
<span class="digg">
раз
</span>
</td>
</tr>
<tr>
<td height="2">
</td>
</tr>
<tr>
<td align="center" height="25">
<div class="digit" id="digbut369044">
<a href="javascript:dig(369044);">
Вверх
</a>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
<td valign="top">
<div>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody>
<tr>
<td valign="top">
<a href="https://www.shementom.ru/stories/369044/wallpapers---desktop-wallpapers-vol-2.html">
Wallpapers - Desktop wallpapers vol.2
</a>
</td>
</tr>
<tr>
<td height="20">
<table border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td width="21">
<img src="https://www.shementom.ru/templates/simple/images/noavatar16x16.gif">
</td>
<td>
<span class="subline">
прислано
<a href="https://www.shementom.ru/users/95008/Futurist/1.html">
Futurist
</a>
4393 days ago (vsepuchkom.ru)
</span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td valign="top">
Обои разного типа на ваш рабочий стол с большим разришениемРазрешение: 1600х1200 - 3200х2000 Количество: 60 Формат: JPGРазмер: 56.5 MB
</td>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td valign="bottom">
<span class="bottomlinks">
<a href="https://www.shementom.ru/stories/369044/wallpapers---desktop-wallpapers-vol-2.html#comments">
3 Комментарии
</a>
-
<a href="https://www.shementom.ru/stories/369044/wallpapers---desktop-wallpapers-vol-2.html">
Читать все
</a>
-
<a href="javascript:bury_story(369044);">
Грохнуть
</a>
Тема:
<a href="https://www.shementom.ru/view/12/drugoe/1.html">
Другое
</a>
</span>
</td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
<!--<tr><td colspan="2"> </td></tr>-->
</tbody>
</table>
<table cellpadding="0" cellspacing="0" style="padding-bottom:20px;" width="100%">
<tbody>
<tr id="storyb369045">
<td align="left" valign="top" width="65">
<table border="0" cellpadding="0" cellspacing="0" class="digbox">
<tbody>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="52">
<tbody>
<tr>
<td align="center" height="28" valign="bottom">
<div class="digs" id="numdigs369045">
15
</div>
</td>
</tr>
<tr>
<td align="center" height="24" valign="middle">
<span class="digg">
раз
</span>
</td>
</tr>
<tr>
<td height="2">
</td>
</tr>
<tr>
<td align="center" height="25">
<div class="digit" id="digbut369045">
<a href="javascript:dig(369045);">
Вверх
</a>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
<td valign="top">
<div>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody>
<tr>
<td valign="top">
<a href="https://www.shementom.ru/stories/369045/amazing-birds-wallpapers-pack-7.html">
Amazing Birds Wallpapers. Pack #7
</a>
</td>
</tr>
<tr>
<td height="20">
<table border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td width="21">
<img src="https://www.shementom.ru/templates/simple/images/noavatar16x16.gif">
</td>
<td>
<span class="subline">
прислано
<a href="https://www.shementom.ru/users/95008/Futurist/1.html">
Futurist
</a>
4393 days ago (vsepuchkom.ru)
</span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td valign="top">
Разрешение: 1920х1080 - 5017х3344 Количество: 60 шт. Формат: JPGРазмер: 107,42 МБ
</td>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td valign="bottom">
<span class="bottomlinks">
<a href="https://www.shementom.ru/stories/369045/amazing-birds-wallpapers-pack-7.html#comments">
0 Комментарии
</a>
-
<a href="https://www.shementom.ru/stories/369045/amazing-birds-wallpapers-pack-7.html">
Читать все
</a>
-
<a href="javascript:bury_story(369045);">
Грохнуть
</a>
Тема:
<a href="https://www.shementom.ru/view/12/drugoe/1.html">
Другое
</a>
</span>
</td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
<!--<tr><td colspan="2"> </td></tr>-->
</tbody>
</table>
<table cellpadding="0" cellspacing="0" style="padding-bottom:20px;" width="100%">
<tbody>
<tr id="storyb369046">
<td align="left" valign="top" width="65">
<table border="0" cellpadding="0" cellspacing="0" class="digbox">
<tbody>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="52">
<tbody>
<tr>
<td align="center" height="28" valign="bottom">
<div class="digs" id="numdigs369046">
14
</div>
</td>
</tr>
<tr>
<td align="center" height="24" valign="middle">
<span class="digg">
раз
</span>
</td>
</tr>
<tr>
<td height="2">
</td>
</tr>
<tr>
<td align="center" height="25">
<div class="digit" id="digbut369046">
<a href="javascript:dig(369046);">
Вверх
</a>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
<td valign="top">
<div>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody>
<tr>
<td valign="top">
<a href="https://www.shementom.ru/stories/369046/poveliteli-cifrovogo-iskusstva-19.html">
Повелители цифрового искусства 19
</a>
</td>
</tr>
<tr>
<td height="20">
<table border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td width="21">
<img src="https://www.shementom.ru/templates/simple/images/noavatar16x16.gif">
</td>
<td>
<span class="subline">
прислано
<a href="https://www.shementom.ru/users/95008/Futurist/1.html">
Futurist
</a>
4393 days ago (vsepuchkom.ru)
</span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td valign="top">
Представлены работы как начинающих, так и добившихся определенной известности художников, иллюстраторов а также обои и разнообразные картинки.Разрешение: 600x450 ~ 2400x1279 Количество: 652 Формат: JPGРазмер: 329.9 Mb
</td>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td valign="bottom">
<span class="bottomlinks">
<a href="https://www.shementom.ru/stories/369046/poveliteli-cifrovogo-iskusstva-19.html#comments">
0 Комментарии
</a>
-
<a href="https://www.shementom.ru/stories/369046/poveliteli-cifrovogo-iskusstva-19.html">
Читать все
</a>
-
<a href="javascript:bury_story(369046);">
Грохнуть
</a>
Тема:
<a href="https://www.shementom.ru/view/12/drugoe/1.html">
Другое
</a>
</span>
</td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
<!--<tr><td colspan="2"> </td></tr>-->
</tbody>
</table>
<table cellpadding="0" cellspacing="0" style="padding-bottom:20px;" width="100%">
<tbody>
<tr id="storyb369047">
<td align="left" valign="top" width="65">
<table border="0" cellpadding="0" cellspacing="0" class="digbox">
<tbody>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="52">
<tbody>
<tr>
<td align="center" height="28" valign="bottom">
<div class="digs" id="numdigs369047">
11
</div>
</td>
</tr>
<tr>
<td align="center" height="24" valign="middle">
<span class="digg">
раз
</span>
</td>
</tr>
<tr>
<td height="2">
</td>
</tr>
<tr>
<td align="center" height="25">
<div class="digit" id="digbut369047">
<a href="javascript:dig(369047);">
Вверх
</a>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
<td valign="top">
<div>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody>
<tr>
<td valign="top">
<a href="https://www.shementom.ru/stories/369047/computer-desktop-wallpapers-collection-592.html">
Computer Desktop Wallpapers Collection №592
</a>
</td>
</tr>
<tr>
<td height="20">
<table border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td width="21">
<img src="https://www.shementom.ru/templates/simple/images/noavatar16x16.gif">
</td>
<td>
<span class="subline">
прислано
<a href="https://www.shementom.ru/users/95008/Futurist/1.html">
Futurist
</a>
4393 days ago (vsepuchkom.ru)
</span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td valign="top">
В этом паке вам предоставляются разнообразные обои с большим разришениемРазрешение: 1920X1080 - 8544X5696 Количество: 63 шт. Формат: JPGРазмер: 108 МБ
</td>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td valign="bottom">
<span class="bottomlinks">
<a href="https://www.shementom.ru/stories/369047/computer-desktop-wallpapers-collection-592.html#comments">
0 Комментарии
</a>
-
<a href="https://www.shementom.ru/stories/369047/computer-desktop-wallpapers-collection-592.html">
Читать все
</a>
-
<a href="javascript:bury_story(369047);">
Грохнуть
</a>
Тема:
<a href="https://www.shementom.ru/view/12/drugoe/1.html">
Другое
</a>
</span>
</td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
<!--<tr><td colspan="2"> </td></tr>-->
</tbody>
</table>
<table cellpadding="0" cellspacing="0" style="padding-bottom:20px;" width="100%">
<tbody>
<tr id="storyb369048">
<td align="left" valign="top" width="65">
<table border="0" cellpadding="0" cellspacing="0" class="digbox">
<tbody>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="52">
<tbody>
<tr>
<td align="center" height="28" valign="bottom">
<div class="digs" id="numdigs369048">
13
</div>
</td>
</tr>
<tr>
<td align="center" height="24" valign="middle">
<span class="digg">
раз
</span>
</td>
</tr>
<tr>
<td height="2">
</td>
</tr>
<tr>
<td align="center" height="25">
<div class="digit" id="digbut369048">
<a href="javascript:dig(369048);">
Вверх
</a>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
<td valign="top">
<div>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody>
<tr>
<td valign="top">
<a href="https://www.shementom.ru/stories/369048/oboi-s-udivitelnymi-krasotkami-vypusk-301.html">
Обои с удивительными красотками выпуск 301
</a>
</td>
</tr>
<tr>
<td height="20">
<table border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td width="21">
<img src="https://www.shementom.ru/templates/simple/images/noavatar16x16.gif">
</td>
<td>
<span class="subline">
прислано
<a href="https://www.shementom.ru/users/95008/Futurist/1.html">
Futurist
</a>
4393 days ago (vsepuchkom.ru)
</span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td valign="top">
Обои на рабочий стол с очень красивыми девушкамиРазрешение: 1600x1200 - 4096x3072 Количество: 95 шт. Формат: JPGРазмер: 130 Mb
</td>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td valign="bottom">
<span class="bottomlinks">
<a href="https://www.shementom.ru/stories/369048/oboi-s-udivitelnymi-krasotkami-vypusk-301.html#comments">
0 Комментарии
</a>
-
<a href="https://www.shementom.ru/stories/369048/oboi-s-udivitelnymi-krasotkami-vypusk-301.html">
Читать все
</a>
-
<a href="javascript:bury_story(369048);">
Грохнуть
</a>
Тема:
<a href="https://www.shementom.ru/view/12/drugoe/1.html">
Другое
</a>
</span>
</td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
<!--<tr><td colspan="2"> </td></tr>-->
</tbody>
</table>
<br>
<br>
<div id="pages">
<ul>
<li class="current">
1
</li>
<li>
<a href="https://www.shementom.ru/viewall/2.html">
2
</a>
</li>
<li>
<a href="https://www.shementom.ru/viewall/3.html">
3
</a>
</li>
<li>
<a href="https://www.shementom.ru/viewall/4.html">
4
</a>
</li>
<li>
<a href="https://www.shementom.ru/viewall/5.html">
5
</a>
</li>
<li>
<a href="https://www.shementom.ru/viewall/2.html">
Далее
</a>
</li>
</ul>
</div>
<br>
</td>
</tr>
</tbody>
</table>
<br>
<br>
<div align="center" class="copyright">
Copyright ©
<a href="/">
Шементом.Ру
</a>
</div>
<!-- Yandex.Metrika counter -->
<div style="display:none;">
<script type="text/javascript">
(function(w, c) {
(w[c] = w[c] || []).push(function() {
try {
w.yaCounter11776369 = new Ya.Metrika({
id: 11776369,
enableAll: true,
webvisor: true
});
} catch (e) {
}
});
})(window, "yandex_metrika_callbacks");
</script>
</div>
<script defer="defer" src="//mc.yandex.ru/metrika/watch.js" type="text/javascript">
</script>
<noscript>
<div>
<img alt="" src="//mc.yandex.ru/watch/11776369" style="position:absolute; left:-9999px;">
</div>
</noscript>
<!-- /Yandex.Metrika counter -->
<!-- Pk -->
<script type="text/javascript">
var _paq = _paq || [];
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u = "/pk/";
_paq.push(['setTrackerUrl',u + 'pk.gif']);
_paq.push(['setSiteId','www.shementom.ru']);
var d = document, g = d.createElement('script'), s = d.getElementsByTagName('script')[0];
g.type = 'text/javascript';
g.async = true;
g.defer = true;
g.src = u + 'pk.js';
s.parentNode.insertBefore(g, s);
})();
</script>
<noscript>
<img alt="" src="/pk/pk.gif" style="border:0">
</noscript>
<!-- /Pk -->
</body>
</html>