function fm_img_teaser_getOffset(elem) {
    if (elem.getBoundingClientRect) {
        return fm_img_teaser_getOffsetRect(elem);
    } else {
        return fm_img_teaser_getOffsetSum(elem);
    }
}
function fm_img_teaser_getOffsetSum(elem) {
    var top=0, left=0
    while(elem) {
        top = top + parseInt(elem.offsetTop)
        left = left + parseInt(elem.offsetLeft)
        elem = elem.offsetParent
    }

    return {top: top, left: left}
}
function fm_img_teaser_getOffsetRect(elem) {
    var box = elem.getBoundingClientRect()
    var body = document.body
    var docElem = document.documentElement
    var scrollTop = window.pageYOffset || docElem.scrollTop || body.scrollTop
    var scrollLeft = window.pageXOffset || docElem.scrollLeft || body.scrollLeft
    var clientTop = docElem.clientTop || body.clientTop || 0
    var clientLeft = docElem.clientLeft || body.clientLeft || 0
    var top  = box.top +  scrollTop - clientTop
    var left = box.left + scrollLeft - clientLeft
    return { top: Math.round(top), left: Math.round(left) }
}
function fm_img_teaser_isIE()
{
	var browser=navigator.appName;
	var b_version=navigator.appVersion;
	var version=parseFloat(b_version);
	if (browser=="Microsoft Internet Explorer")
		return true;
			else return false;	
}
var super_teaser__target;
function offsetPosition(element) {

}
function teaser_img_slider()
{
	this.intervalID = false;
}
teaser_img_slider.prototype.clearInterval = function()
{
	if (this.intervalID)
	{
		clearInterval(this.intervalID)
		this.intervalID = false;
	}
}
teaser_img_slider.prototype.setInterval = function(func)
{
	this.intervalID = setInterval(func, 30);
}
teaser_img_slider.prototype.show = function(obj, max)
{
	if (obj.hidden)
		return;
	this.clearInterval();
	obj.style.display='';
	this.setInterval(function()
	{
		obj.style.height = (parseInt(obj.style.height)+0.3*(max-parseInt(obj.style.height)))+'px';
	}
	);
}
teaser_img_slider.prototype.hide = function(obj)
{
	this.clearInterval();
	this.setInterval(function()
		{
			obj.style.height = (0.6*parseInt(obj.style.height))+'px';
			if (parseInt(obj.style.height)  < 5)
			{
				obj.style.display='none';
				return;
			}
		});
}
teaser_img_slider.prototype.resize = function(obj, dist)
{
	if (obj.hidden)
		return;
	setInterval(function()
	{
		var dx;
		dx = Math.floor(dist*0.3);
		if (dx == 0)
		{
			if (dist < 0)
				dx = -1;
			if (dist > 0)
				dx = 1;
		}
		obj.style.height = (parseInt(obj.style.height) + dx) + 'px';
		dist -= dx;
		if (dist == 0)
			return;
	}, 30);
}
teaser_img_slider.prototype.move = function(obj, dist, min_left, max_left)
{
	var preved = this;
	var intervalID = setInterval(function()
		{
			var dx;
			dx = Math.floor(dist*0.3);
			if (dx == 0)
			{
				if (dist < 0)
					dx = -1;
				if (dist > 0)
					dx = 1;
			}
			obj.style.left = (parseInt(obj.style.left) + dx)+'px';
			dist -= dx;
			if (parseInt(obj.style.left) <= min_left)
			{
				obj.style.left = min_left + 'px';
				clearInterval(intervalID);
				preved.onNoScrollLeft();
			} else preved.onCanScrollLeft();
			if (parseInt(obj.style.left) >= max_left)
			{
				obj.style.left = max_left + 'px';
				clearInterval(intervalID);
				preved.onNoScrollRight();
			} else preved.onCanScrollRight();
			if (dist == 0)
				return;
		}, 30);
}
function teaser_img_adv(img, teaser_id)
{
	this.img = img;
	this.slider = new teaser_img_slider();
	
	this.adv = this.createAdv(teaser_id);
	var img_adv = this;
	this.slider.onNoScrollLeft = function()
	{
		img_adv.adv.button_right.src = "http://t1.cmix.org/img/right_disabled.gif";
	}
	this.slider.onNoScrollRight = function()
	{
		img_adv.adv.button_left.src = "http://t1.cmix.org/img/left_disabled.gif";
	}
	this.slider.onCanScrollLeft = function()
	{
		img_adv.adv.button_right.src = "http://t1.cmix.org/img/right_enabled.gif";
	}
	this.slider.onCanScrollRight = function()
	{
		img_adv.adv.button_left.src = "http://t1.cmix.org/img/left_enabled.gif";
	}
	super_teaser__target = this.adv;
	this.adv.adv = this;
}
teaser_img_adv.prototype.createAdv = function(teaser_id)
{
	var element = this.img, offsetLeft = 0, offsetTop = 0;
    do {
        offsetLeft += element.offsetLeft;
        offsetTop  += element.offsetTop;
    } while (element = element.offsetParent);
	var div		= window.document.createElement('div');
	var wrapper	= window.document.createElement('div');
	wrapper.appendChild(div);
	div.id		= "super_teaser__teaser_" + teaser_id;
	window.document.body.appendChild(wrapper);
	wrapper.style.zIndex=100000;
	wrapper.style.position='absolute';
	wrapper.style.top = offsetTop+'px';
	wrapper.style.left = offsetLeft + 'px';
	wrapper.style.width=this.img.width+'px';
	
	wrapper.style.backgroundColor='#444';
	div.style.position='relative';
	wrapper.style.opacity=0.8;
	wrapper.style.filter = 'alpha(opacity=80)';
	div.style.filter = 'alpha(opacity=100)';
	div.style.opacity=1;
	wrapper.style.height='0px';
	wrapper.style.overflow='hidden';
	/*
	var del = document.createElement('img');
	del.src='http://pusher.dev.we/delete2.gif';
	del.style.top = offsetTop + 'px';
	del.style.left = this.img.width - 20 + 'px';
	del.style.top = '10px';
	del.style.position='absolute';
	del.style.cursor='pointer';
	del.onclick = function()
	{
		slider.hide(wrapper);
		wrapper.hidden = true;
	};
	wrapper.del = del;
	wrapper.appendChild(del);
	*/
	this.img.showImage=wrapper;
	var super_teaser__css_text = '<div style="height:0px;">&nbsp;</div> <style type="text/css"> #tizer_table *{background:none!important;clear:none!important;clip:auto!important;cursor:auto!important;float:none!important;;font-variant:normal!important;font-weight:normal!important;letter-spacing:normal!important;line-height:normal!important;margin:0!important;overflow:hidden!important;padding:0!important;position:static!important;text-decoration:none!important;text-indent:0!important;text-transform:none!important;vertical-align:baseline!important;visibility:visible!important;white-space:normal!important;width:auto!important;word-spacing:normal!important;z-index:auto!important;} #tizer_table a,#tizer_table a *{cursor:pointer!important; text-decoration:none!important;} #tizer_table b{font-weight:bold!important;} #tizer_table a,#tizer_table b,#tizer_table em,#tizer_table ins,#tizer_table span{display:inline!important;} #tizer_table div,#tizer_table img,#tizer_table object{display:block!important;} #tizer_table table{border-collapse:collapse!important;display:table!important;table-layout:fixed!important;} #tizer_table tbody{display:table-row-group!important;} #tizer_table tr{display:table-row!important;} #tizer_table th,#tizer_table td{vertical-align:top!important;} #tizer_table ul,#tizer_table li{display:list-item!important;list-style:none outside none!important;} #tizer_table wbr{display:inline-block!important;} table.fm_teaser_block_1797{	height:200px;	table-layout:fixed;	overflow:hidden;	background-color:#;	border:solid 1px #CCCCCC;	border-spacing:3px;	border-collapse:separate; } div.fm_teaser_1797{	color:#000099;	font-size:12px;	font-family:Arial;	overflow:hidden;	width:100%;	height:100%;	text-align:center; } table.fm_teaser_block_1797 td{	border:solid 1px #CCCCCC;	} table.fm_teaser_block_1797 div.fm_teaser_1797 a{ color:#000099; } table.fm_teaser_block_1797 div.fm_teaser_1797 a:hover{	color:#880000; } </style> ';
var super_teaser__teaser_template = '<div class="fm_teaser_1797">	<table width="100%" height="150"><tr><td width="100%" height="100%" align="center" valign="middle" style="border:none">	<a target="_blank" href="{URL}">	<img style="border:none;padding:5px;margin:auto;display:block;border:solid 1px #CCCCCC" src="http://photosex.biz/imager/w_150/h_150/{THUMB_HOST_ID}.{THUMB_HOST_TYPE}" /></a>	</td></tr></table>	<a target="_blank" href="{URL}">{NAME}<br />	<small style="color:#666666;font-size:12px">{DOWNLOAD}&nbsp;&#187;</small>	</a>	</div> ';
var super_teaser__teaser_data = [{"name":"Wired Pussy In New York Part 4 - Betty Baphomet, Nadia Styles & Princess Donna","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=lAbOOUN4D3QlUNk7dA2jvqdduxzE4cTEZa5bCCu7Ckg&id_profile=1311","thumb_hosting_id":"32009b33e91dc003c52160fde0380314","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Sexual Fantasy Kingdom All Volumes","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=lOuyysPE7jzVxNLh8yZk637oHiKw2myDH2-SJ5ekSO8&id_profile=1311","thumb_hosting_id":"e7d541e0fae2dcbd588fe49dc0e32982","thumb_hosting_type":"jpg","id_language":"2"},{"name":"X-Men \u043f\u043e\u0440\u043d\u043e\u043c\u0443\u043b\u044c\u0442 [1999 \u0433., Disney, Cartoon, TVRip]","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=1qyf7pDw8nRvQIIwEu6-xeDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"aa9e34688224a7f79cdb3f86424db658","thumb_hosting_type":"jpg","id_language":"1"},{"name":"Beautiful girl 2","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=wNyVY22Hqr1yuh-Lp5GNfODjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"3f6d8359abceb4bf004b0a118ba6751e","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - Spanky (03-24-2004)","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=G8VQ1uWBFoD2To-1LlFD7ODjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"a62a3090d9921009aac5ef5c354d6146","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Oral Deluxe Anthology {CD1} [Marc Dorcel 2007]","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=TuggNTjRPMtceyJoONsJT-DjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"773763bcf495b748397d2555c1e0de1c","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Sexual Fantasy Kingdom Vol.3: Black Magic.rar","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=sVn9T26hmrd9WBk452cScfspC-nhT_lqSPOZIOKnync&id_profile=1311","thumb_hosting_id":"e3ea3573c79d268057b21aab183c3cb5","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Naughty America - My Sister's Hot Friend - Daisy Marie","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=QEs7AZZpN3KZ1Drw9LWIJeDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"72fff421c2d10464927f46833430fef7","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Natsu No Hito Shizuku Disk 01.rar","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=6C2ffz3G59LKNtlvywqNgvspC-nhT_lqSPOZIOKnync&id_profile=1311","thumb_hosting_id":"8d42fa177a23a655db4c444b0301b9e9","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - perry's test rope tutorial very fexible","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=kjBlpu330RWyqkoTB2MgCeDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"a39e3aa070d0371622b06ac2fb1d13c9","thumb_hosting_type":"jpg","id_language":"2"},{"name":"[Comics] Riverstone Peter. A compilation of comic strips [jpg]","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=BaeJCySW0UVcMjGmSGuNdPspC-nhT_lqSPOZIOKnync&id_profile=1311","thumb_hosting_id":"ddde6d9e1b03b5c9695ceb5bcf97dae7","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Aya","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=sbKYOT9U4yWS-uMohfz8puDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"7bd0c52d36eb333c32f7d51a0eb4700b","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Nyoro Nyoro 3D 1","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=wMhxtFOOONbpsSRGOxz99eDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"d6a168dde20b4811e5c1d483d677abc4","thumb_hosting_type":"jpg","id_language":"2"},{"name":"SKUNK","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=eBiwpMrNKP-k4WTeaMCPePspC-nhT_lqSPOZIOKnync&id_profile=1311","thumb_hosting_id":"03de3ea7cfba91a4ac7f56afdff0cb86","thumb_hosting_type":"jpg","id_language":"1"},{"name":"Master.Costello.Abgerichtet.CD1.avi","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=1fV0PHig6_hpelz_aqoYAH7oHiKw2myDH2-SJ5ekSO8&id_profile=1311","thumb_hosting_id":"bf6aa6ef8cd9a1d519720f6ca7d5fec7","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Space Prison - [High Quality 3D porn movies]","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=7YqkNRzRkPFxys-K31-UCODjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"6f4b7e9418932cc4af5be0e72e5f2854","thumb_hosting_type":"jpg","id_language":"2"},{"name":"3D Wolfmen","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=tq3YP1j5kuj9oEjoKRtO7eDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"9e2fa5194d2494734baa8868dced5f5e","thumb_hosting_type":"jpg","id_language":"1"},{"name":"\u041c\u0430\u0437\u043e\u0445\u0438\u0441\u0442\u043a\u0438 - \u0423\u0434\u0443\u0448\u0435\u043d\u043d\u0430\u044f (BDSM - ChokeMonster)","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=nLNv86gLb4dk8RbJgHuIGH7oHiKw2myDH2-SJ5ekSO8&id_profile=1311","thumb_hosting_id":"5371162dec527d777da61ec215acb988","thumb_hosting_type":"jpg","id_language":"1"},{"name":"Japan+Prison+Camp","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=oxWyXB4tZvAT1Hy923807ODjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"86841237d86247fdef509607984e52e9","thumb_hosting_type":"jpg","id_language":"1"},{"name":"Fuck My Ass (2009) DVDRip","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=EyPwdVzViXA2LWHXMN5pqH7oHiKw2myDH2-SJ5ekSO8&id_profile=1311","thumb_hosting_id":"fbaa5c766d1e678f18b23b7af6693653","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Teens For Cash 5","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=uPVcwdt9gQqb0Z13pM-EoeDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"166150c428922ce6d844d3b9f181910d","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Big Busted Doms","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=p5S2bLJQwAdtbA9xt6WVBKdduxzE4cTEZa5bCCu7Ckg&id_profile=1311","thumb_hosting_id":"05a9d5decaf0ed1af18e53f032f14b04","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Virtual Sex Lady Runa","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=c-EwxgfrzM8IBHT7F8_TTODjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"3265f56c1473aecd6943733b19c15555","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Youjo Houkai Fumi Nijira Reta Tsubomi Rei","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=JrUMbcNFBJEvyVbHeasDx-DjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"32005913b63185c0eab7d6c162ad559a","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - Soiled 1030 LF Jan 24Th 2002","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=MDU5jATLfyvnaP5vBhvNTuDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"591587cc0b4811d2acce29ca49f8aa1b","thumb_hosting_type":"jpg","id_language":"2"},{"name":"MC.Bizzare-Begierden.avi","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=2CraJ1tYax-1rc-fZw12IX7oHiKw2myDH2-SJ5ekSO8&id_profile=1311","thumb_hosting_id":"dc9332d592c0089ade42d5707dd6f623","thumb_hosting_type":"jpg","id_language":"2"},{"name":"\u0420\u0435\u0430\u043b\u044c\u043d\u044b\u0435 \u0421\u043a\u0440\u044b\u0442\u044b\u0435 \u0414\u0443\u0448\u0435\u0432\u044b\u0435 14 - Real Hidden Showers 14","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=rTHz63TD6CdlrNZOxBZtyeDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"a91a108c1a98db5177ab8fff1d2ab585","thumb_hosting_type":"jpg","id_language":"1"},{"name":"Insex - 1016 rubber dslx","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=dG1cGIxHxUlk4fUr0Q895ODjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"8f0e911a94739522db3a13125c9059be","thumb_hosting_type":"jpg","id_language":"2"},{"name":"88 Disney porn scenes(cartoons) - all sex genres - free adult video!","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=eTGnCdJQkO9X0ddlPmZL1uDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"e7f13ebd56e5542acb3f5918d291b181","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Tory Lane - Fucking Dungeon","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=Qn9H-DwclnsmUtCo4dQhV-DjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"b9403dd9e6cef6dce8cf00014df3225c","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Tora-Tora Gold Vol 95 (Yuri Kousaka)","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=8DRfXR_CcMc5K5U8IIukDeDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"c493ed1361bfb3ebdd5be261a1784763","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Oppai Slider 2 UNCENSOR PATCH","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=wFH5n6wAE3pSiLcABKQmovspC-nhT_lqSPOZIOKnync&id_profile=1311","thumb_hosting_id":"e74278c786e901a1c4892bc87576be6e","thumb_hosting_type":"jpg","id_language":"1"},{"name":"Insex - Leftovers (Donna, 912, 813 and 626) (10 Nov 2004)","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=URy7crsoWbAOR4L7IgQ8xODjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"0cab826e29a435e8eab7b5f457c7cd65","thumb_hosting_type":"jpg","id_language":"2"},{"name":"insex - s4 interview dsl 2004","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=lvWCLpVgiuz-CUhvF8EmNODjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"51bf49a140b9610239db08eded7a3e41","thumb_hosting_type":"jpg","id_language":"2"},{"name":"3D Doll - Image.avi","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=3cimGtOkq_H7wabZ0ArQduDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"8b0a632baf4115a381e18b6a30a76788","thumb_hosting_type":"jpg","id_language":"1"},{"name":"Oppai 2","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=PI-m-y6oM_j8nqY9Qk-aVfspC-nhT_lqSPOZIOKnync&id_profile=1311","thumb_hosting_id":"02480c9313262807e408998d3b5ec62b","thumb_hosting_type":"jpg","id_language":"2"},{"name":"\u0420\u0435\u0430\u043b\u044c\u043d\u044b\u0435 \u0421\u043a\u0440\u044b\u0442\u044b\u0435 \u0414\u0443\u0448\u0435\u0432\u044b\u0435 13 \/ Real Hidden Showers 13","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=pYl_P3ceBYWB34fQCiyhun7oHiKw2myDH2-SJ5ekSO8&id_profile=1311","thumb_hosting_id":"136c779cbc4ff0c1cd7134a62632bed1","thumb_hosting_type":"jpg","id_language":"1"},{"name":"insex - cherry test dsl","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=GkFyuMyr-FRCyA5afZCZT-DjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"18f1446cc586a31285f1f9cbf3dc33db","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Pornomation 1 - [3D SciFi Porno Animation]","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=_rm4Ec0blGOzAphRCcnBuuDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"78530492503763d07a34feb90d55a38d","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Marc Dorcel - Natacha","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=XwQYKsEhYkhOyvcLDLh2teDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"d84f73fac13029b095f353a0ecaf02f9","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Eurozotic (2009) DVDRip","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=frDc1JUkisvqtNxvzH0HX37oHiKw2myDH2-SJ5ekSO8&id_profile=1311","thumb_hosting_id":"21d10dfaa387477afec308aecef1d2a1","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Real 3D Cyber Sex","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=eQTneIqHSzhOMVfHjHMZoe9vbwE30eUFOoxaYH3PGB4&id_profile=1311","thumb_hosting_id":"2828d3ea3aa43b7cee8b83788d5defba","thumb_hosting_type":"jpg","id_language":"1"},{"name":"Cage Vol.1","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=ndw0hh6-tOSbLRF0ywuaTfspC-nhT_lqSPOZIOKnync&id_profile=1311","thumb_hosting_id":"687bdee90555a4cfe69e2d5443437f81","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - Shonta Gets Pregnant","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=NOd2QB3R4hr1KxZFe-8huODjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"2e2f9cbb68b468d8f0254efcfa416ced","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Cindy Crawford FuckingDungeon ","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=Fp6ie9DacxQRG_AuGxO2x6dduxzE4cTEZa5bCCu7Ckg&id_profile=1311","thumb_hosting_id":"6127c02d5aa6bace634315660ef1eb36","thumb_hosting_type":"jpg","id_language":"2"},{"name":"InFemDom.com - clip 1684","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=zZ4cbANo00-3aTTzF0dYnuDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"9ccaae592628bea5c684825ea5c42b09","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Brasileirinhas Carnaval 2008 (Adult DVD video)- extreme sex party - genre: allsex","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=YvkkrsxkGxVYO8xsKrfWy-DjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"089bc6e7cb68db2f5a92bb73c763ccb8","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - 418 Clito Frust","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=6z-e0WU2oF9zXrdh1VRUvODjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"3782b4e24d74c0a757b89809b03f53d7","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Juice Toys","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=fs3Z5Wa3yvYBQ8fqpMWG2eDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"8abb1bd63ccef1e02dc34b164a40100b","thumb_hosting_type":"jpg","id_language":"2"},{"name":"[eng] 3D Svarog animation collection 2 part [3d adult animation]","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=uzw2vo4uGcMwndoPaga3qODjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"333362dbdf4321a732f6a97df1bf8a04","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Shin Shoku Disk 01","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=uTq_veEDVxPwtSoZBjRqq_spC-nhT_lqSPOZIOKnync&id_profile=1311","thumb_hosting_id":"350402c0c64ad3c1724fd9e5105231fa","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Lovers Guide: Sexual Positions - (Genre:Adult Education)","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=gPvUHc2jAGZYlcoelSln1uDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"e58fc0714c0ded3f57031f59bb77ede5","thumb_hosting_type":"jpg","id_language":"2"},{"name":"\u0418\u0441\u0442\u043e\u0440\u0438\u044f \u041f\u044b\u0442\u043e\u043a 20 - \u041d\u0435 \u043a\u043e\u0441\u0438 \u043f\u043e\u0434 \u0446\u0435\u043b\u043a\u0443 (History Torture 20 - Virgin Mystification)","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=69y0XWaHB8eka9om1WcblH7oHiKw2myDH2-SJ5ekSO8&id_profile=1311","thumb_hosting_id":"3d610264a19dcc5ed927f1bea62f4761","thumb_hosting_type":"jpg","id_language":"1"},{"name":"Insex - 227's test","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=X11SDM5L2VOz9Vd6VGAVSODjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"bccae2cdac4fc4a5da5bccc8e174c0c1","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Countdown To Delight","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=DpGTplREHNaA59PoXbXEPvspC-nhT_lqSPOZIOKnync&id_profile=1311","thumb_hosting_id":"a9f605c5f4297b357ab9fe72406e243d","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Doll 03 Yuna","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=bb2RxEiiQYdrdX1sbji07-DjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"7bc26db0084f9c03880a70d4404bccf2","thumb_hosting_type":"jpg","id_language":"2"},{"name":"3D Gay Villa \/ 3D \u0413\u0435\u0439 \u0412\u0438\u043b\u043b\u0430","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=xf8jtximzOXbSqGtLO8_IODjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"5b4a43b6b3bb58f28cb955e4ed9282b2","thumb_hosting_type":"jpg","id_language":"1"},{"name":"Oshikake Princess.rar","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=AQIO0zdvViCuH8heG6WdlPspC-nhT_lqSPOZIOKnync&id_profile=1311","thumb_hosting_id":"ac5da971cbc01778e02eedab4582cbd4","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Lupus Pictures - LP-056 Two-Faced.rar","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=OwSM3iqXLETH7HsGTYG4W6dduxzE4cTEZa5bCCu7Ckg&id_profile=1311","thumb_hosting_id":"fe571485194a478a73932249ec6f2518","thumb_hosting_type":"jpg","id_language":"1"},{"name":"Polygon Love","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=8Ps5hBTTFWK0L98TP5rjYuDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"3db9b047ddc328dae7a3d3756933e5c9","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - 922 garage","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=FeQMkLOEcXHLBA0WTBJnnODjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"c8da715dee21d99c4cd9e453d40bbde3","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - Sxs Training (2000-02-26)","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=f0hndipajveFZdqqqPiEG-DjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"cbc2c0259eeb32ea73a00e14d6482273","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Female Orgasm Mastery - Squirting Orgasms (Adult DVD) - [Genre: Female orgazm]","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=xVRL-xznMHw9AFLuP2et8-DjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"6fee3a5b4ac3cb09d53d9eff2ef2e614","thumb_hosting_type":"jpg","id_language":"2"},{"name":"insex - leeches dsl","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=lw2c0afKIqAN6FCzQvzJo-DjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"562f7fb4f26d61717ea58782a738a296","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - 1201 The Roommate","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=Oy07TvtXsVTu_JbSvSH4QeDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"d058f4b0a36b6698623e0e0d1d3a7f9e","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Shyla Stylez - Fucking Dungeon","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=vkcnJC-bUTmwfLn6CEfWveDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"20fb5134964108cf07f4e614a5e633b6","thumb_hosting_type":"jpg","id_language":"2"},{"name":"InFemDom.com - clip 1647","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=-gA7RZChisY9b7Q8Y9SC2eDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"26ca392d8cffe11986bda366f732c77d","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - DB 09-01-02","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=D5qYVD7rII1ctp8XG8d2gODjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"d33da8797ee26cec32bb27530add2299","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Sexual F","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=WyqQCvOnsAAsG4EtZSxkbfspC-nhT_lqSPOZIOKnync&id_profile=1311","thumb_hosting_id":"6f49a80d040552b70b6bfac58c8e8d48","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Pornstars Like it Big:European Psycho","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=W0P60S-01IxPKd3fx_QqvODjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"95aefaafd28567a41f0714712ad85685","thumb_hosting_type":"jpg","id_language":"2"},{"name":"The Hentai Monster Hunter Sayaka","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=cteHrAfs3thZ72wWxvcslvspC-nhT_lqSPOZIOKnync&id_profile=1311","thumb_hosting_id":"7bbffc94306cea53a81ab523006c5765","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Twin","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=QXigEJvn8VVKsGFhmU0si-DjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"f910df223ed896a64895d053dc07cece","thumb_hosting_type":"jpg","id_language":"2"},{"name":"InFemDom.com - clip 1685","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=n5go-T328fVFY553rP9N0eDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"289f67fc4983bd611a3eed54de1605b8","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - OR beaver's last feed","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=yWn9-hB9DQXk_5ptnfKFneDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"0c877be7c0ea8b5a4fae4f45fd1fa164","thumb_hosting_type":"jpg","id_language":"2"},{"name":"The Nuns Of Sexualministrant","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=bWOloMva7Yw2gKPaXKmi8fspC-nhT_lqSPOZIOKnync&id_profile=1311","thumb_hosting_id":"f2a39aed35e6ca6a005b1257c19f3de1","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Doll 04 Ayane","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=YWsbOt0XgXAghTqJTbgPWeDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"bbf100d1f98b4f6e10e111934b2a3f93","thumb_hosting_type":"jpg","id_language":"2"},{"name":"JasminSinclair - TicTacToe with Rebekah","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=T6XdWMlk9TERAJ4hoi0GSODjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"d900ab0dc77a91d1d6a595eab54a2766","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Golie znamenitosti","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=o6Mwp65y-qiIxlng4PJtReDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"159125991c5e3feb2019c70472984204","thumb_hosting_type":"jpg","id_language":"1"},{"name":"Insex - S4","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=wtRfXcqOcGFuf1H8vLTENuDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"d67e19455bfb784eb720fba13e7ba1c1","thumb_hosting_type":"jpg","id_language":"2"},{"name":"History Torture 19 - Celine The First Time (\u0418\u0441\u0442\u043e\u0440\u0438\u044f \u041f\u044b\u0442\u043e\u043a 19 - \u0421\u0435\u043b\u0438\u043d\u0430 (\u043d\u043e\u0432\u0435\u043d\u044c\u043a\u0430\u044f))","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=eYQVSvIm7MU_lVfiNZ8DUX7oHiKw2myDH2-SJ5ekSO8&id_profile=1311","thumb_hosting_id":"527fb6bba17340bab11abc59948ec5c1","thumb_hosting_type":"jpg","id_language":"1"},{"name":"Naka Nunara Naka Seteyarou Sei Dorei.rar","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=p5UUxwIKHacWmww54Ucw9vspC-nhT_lqSPOZIOKnync&id_profile=1311","thumb_hosting_id":"6ae7443ba5518fbdc37e0b329ef8f286","thumb_hosting_type":"jpg","id_language":"2"},{"name":"\u041c\u0430\u0437\u043e\u0445\u0438\u0441\u0442\u043a\u0438 - \u0414\u044d\u043d\u0438\u0441 \u0438 \u0413\u043e\u0441\u043f\u043e\u0436\u0430 \u0412\u0438\u043a\u0442\u043e\u0440\u0438\u044f (BDSM - Denise and Mistress Victoria)","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=N3L-b3O9OERY1TNvMcGrF37oHiKw2myDH2-SJ5ekSO8&id_profile=1311","thumb_hosting_id":"6bdd01bfe2a75abb682813476a2773ce","thumb_hosting_type":"jpg","id_language":"1"},{"name":"Insex - Madison","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=RZZH11HMRFsDN4UuDVRmU-DjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"db179f46355230c76133cac5ecd763dc","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Japan Prison Camp","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=qB3Rch_seroAFcBPATL0dKdduxzE4cTEZa5bCCu7Ckg&id_profile=1311","thumb_hosting_id":"8e3e77213d5d14445415c417c233b2ef","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Adventures of young men in a bed","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=-XyPiGaxP39LGG0lxq-pSODjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"4215b2d696eae59a6f61507c0709466b","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - 65Dsl (Jen X)","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=2MsYH_JQ4V1cGioV5hQcRuDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"95b4bbd20496a0aa4f98ac4905c78546","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Kamikaze Premium Vol 20 (Yuna Momose)","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=a7syHCzEG98YjL6EA81ypODjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"665df7948f1cb9e5defba4778f8a21ae","thumb_hosting_type":"jpg","id_language":"2"},{"name":"\u0421\u0443\u043f\u0435\u0440 \u0432\u0438\u0434\u0435\u043e,\u0436\u0435\u0441\u0442\u043e\u043a\u043e\u0435 \u0438\u0437\u043d\u043e\u0441\u0438\u043b\u043e\u0432\u0430\u043d\u0438\u0435 \u0434\u0435\u0432\u043e\u0447\u043a\u0438!","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=uid41WH9aaRcstMReyoST-9vbwE30eUFOoxaYH3PGB4&id_profile=1311","thumb_hosting_id":"c9eff0bb5a24ed40effd4ba5d55922d0","thumb_hosting_type":"jpg","id_language":"1"},{"name":"Savior","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=9SoeecrtM0PADCx45Hpef_spC-nhT_lqSPOZIOKnync&id_profile=1311","thumb_hosting_id":"eaf4742c7b342325e8b85a1a24fa60bb","thumb_hosting_type":"jpg","id_language":"2"},{"name":"\u0417\u0430\u0431\u0430\u0432\u043d\u044b\u0435 \u043c\u043e\u043c\u0435\u043d\u0442\u044b \u0441\u043e \u0441\u044a\u0435\u043c\u043e\u043a \u043f\u043e\u0440\u043d\u043e","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=DuU7U3NaRLfNHPxHAZ57OO9vbwE30eUFOoxaYH3PGB4&id_profile=1311","thumb_hosting_id":"2d88a7c58c64a594498e9a06ed74aa2e","thumb_hosting_type":"jpg","id_language":"1"},{"name":"Jas For Sport Relief","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=iz4VoHC-L3uIrtLkJD2t5uDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"842f7bec7b1c0bf20225f09b79742edc","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - 101 Live (From 03-29-01)","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=UOjveQcvOktUkZGylRjYZ-DjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"462a08e5618b4641faf278ad4ae905b3","thumb_hosting_type":"jpg","id_language":"2"},{"name":"3D Animation Series 3 Tentacle Room","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=fjap_0CxInl80Xu7tgKdouDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"b1f4154acf49c68709d542411c1a047f","thumb_hosting_type":"jpg","id_language":"2"},{"name":"insex - iv test dsl","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=LApMff29hueVbzYTohJRcuDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"ad0e16a3b950ae4a950f7bc282498eb8","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Bobbi Starr\/Big Wet Butts: ","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=i2SpWqtIv1zmumg7WZB7F-DjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"dc94a312aa10e0772587045fa6d3ade2","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - Escape (2 Oct.2002)","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=hrekCIdVj1nPLFfrgh9JteDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"f18ab9f5eaf0b67dcf6a5878c5f5cbe8","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Uncensored Japanese Adult Video - 03","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=ITM-O2UgwftEibWMz84d3uDjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"ec44ad34eb828eddd1cd5dc2138aa427","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Cage of Desire","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=P7OcpKqNe8D34Vm7mNGuC-DjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"7615788d12f2e856c8053e4a80b5a3b8","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Savannah Stern - Fucking Dungeon.wmv","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=rYAYs7IaHhg0b3s8ukUCt-DjESCOH5cET2YpDaltggs&id_profile=1311","thumb_hosting_id":"d7218db829e72b417d54e022a39e2fae","thumb_hosting_type":"jpg","id_language":"2"},{"name":"History Torture 18 - Fear (\u0418\u0441\u0442\u043e\u0440\u0438\u044f \u041f\u044b\u0442\u043e\u043a 18 - \u0421\u0442\u0440\u0430\u0445)","url":"http:\/\/allprogram.org\/teaser_client.php?pcode=pZ-PTzWZLRUVcFchWNDqhn7oHiKw2myDH2-SJ5ekSO8&id_profile=1311","thumb_hosting_id":"dad5432546ccd4076d6632dc94ec6709","thumb_hosting_type":"jpg","id_language":"1"}];
var super_teaser__teaser_row_count=0;
var super_teaser__teaser_col_count=0;
var super_teaser__teaser_files_count = 50;	var super_teaser__files = [];
	var super_teaser__temp = [];
	super_teaser__teaser_files_count = super_teaser__teaser_data.length;
	if (super_teaser__teaser_data.length > 15)
		super_teaser__teaser_files_count = 15;
			else super_teaser__teaser_files_count = super_teaser__teaser_data.length;
	if (super_teaser__teaser_files_count >= super_teaser__teaser_data.length)
		var super_teaser__files = super_teaser__teaser_data;
			else while (super_teaser__files.length < super_teaser__teaser_files_count)
			{
				var index = Math.floor(Math.random()*super_teaser__teaser_data.length);
				if (super_teaser__temp[index] == undefined)
				{
					super_teaser__temp[index] = 1;
					super_teaser__files.push(super_teaser__teaser_data[index]);
				}
			}
	var html = '<div style="position:relative;height:200px;margin-left:20px;margin-right:20px;width:'+(this.img.width-40)+'px">';
	html += '<img class="move_left" src="http://t1.cmix.org/img/left_enabled.gif" style="opacity:0.8; position:absolute;z-index:10;left:-17px;top:92px;cursor:pointer" />';
	html += '<img class="move_right" src="http://t1.cmix.org/img/right_enabled.gif" style="opacity:0.8; position:absolute;z-index:10;left:' + (this.img.width-38).toString() + 'px;top:92px;cursor:pointer" />';
	html += '<div style="overflow:hidden;height:200px;">';
	html += '<div style="width:10000px;position:relative;left:0px;" class="fm_teaser_img_move_div">';
	html += '<table onmouseover="//this.border=1" onmouseout="//this.border=0" class="fm_teaser_block_1797" style="table-layout:fixed;height:200px;" cellpadding="0" cellspacing="0">';
	super_teaser__teaser_col_count = super_teaser__teaser_files_count;
	super_teaser__teaser_row_count=1;
	for (i = 0; i < 1; i++)
	{
		html += '<tr valign="middle">';
		for (j = 0; j < super_teaser__teaser_files_count; j++)
		{
			html += '<td height="' +Math.floor(100/super_teaser__teaser_row_count)+ '%" width="160" style="padding:5px">';
			var temp = super_teaser__teaser_template;
			var file = super_teaser__files[i+super_teaser__teaser_row_count*j];
			if (!file)
				break;
			temp = temp.replace('{URL}', file.url);
			temp = temp.replace('{URL}', file.url);
			temp = temp.replace('{URL}', file.url);
			temp = temp.replace('{NAME}', file.name);
			temp = temp.replace('{THUMB_HOST_ID}', file.thumb_hosting_id);
			temp = temp.replace('{THUMB_HOST_TYPE}', file.thumb_hosting_type);
			if (file.id_language == 1)
				temp = temp.replace('{DOWNLOAD}', 'c\u043a\u0430\u0447\u0430\u0442\u044c');
					else temp = temp.replace('{DOWNLOAD}', 'Download');
			html += temp;
			html += '</td>';
		}
		html += '</tr>';
	}
	html += '</table>';
	html += '</div>';
	html += '</div>';
	html += '</div>';
	wrapper.innerHTML = html+super_teaser__css_text;
	var list = wrapper.getElementsByTagName('div');
	for (i = 0; i < list.length; i ++)
	{
		if (list[i].className == 'fm_teaser_img_move_div')
		{
			var move_div = list[i];
			break;
		}
	}
	var td_list = move_div.childNodes[0].childNodes[0].childNodes[0].childNodes;
	var td_count = Math.floor((this.img.width-30)/195);
	if (td_list.length < td_count)
		td_count = td_list.length;
	var td_width = Math.floor((this.img.width-30)/td_count)-15;
	if (fm_img_teaser_isIE())
		td_width += 15;
	wrapper.childNodes[0].padding=Math.floor((this.img.width-td_count*td_width)/2) + 'px';
	for (i = 0; i < td_list.length; i ++)
	{
		td_list[i].width = td_width;
		td_list[i].style.width = td_width + 'px';
	}
	var td_dist = 12;
	move_div.style.left = td_dist + 'px';
	move_div.style.width = (td_list.length)*(td_width+td_dist) + 'px';
		var list = wrapper.getElementsByTagName('img');
	var slider = this.slider;
	for (i = 0; i < list.length; i ++)
	{
		if (list[i].src)
		{
			if (list[i].className == 'move_left')
			{
				wrapper.button_left = list[i];
				var img_width = this.img.width;
				list[i].onclick = function()
					{
						if (parseInt(move_div.style.left) < 0)
							slider.move(move_div, td_width+td_dist, -(td_width+td_dist)*(super_teaser__teaser_files_count-3), 0);
								else slider.onNoScrollRight();
					};
			}
		if (list[i].className == 'move_right')
			{
				wrapper.button_right = list[i];
				list[i].onclick = function()
					{
						if (parseInt(move_div.style.left) > -(td_width+td_dist)*(super_teaser__teaser_files_count-3))
							slider.move(move_div, -(td_width+td_dist), -(td_width+td_dist)*(super_teaser__teaser_files_count-3), 0);
								else slider.onNoScrollLeft();
					};
			}
		}
	}
	slider.move(move_div, 0, -(td_width+td_dist)*td_count, 0);
	
	return wrapper;
}
teaser_img_adv.prototype.show = function()
{
	this.slider.show(this.adv, 200);
}
teaser_img_adv.prototype.hide = function()
{
	this.slider.hide(this.adv);
}

if (window.captureEvents){ // если Netscape Navigator
    window.captureEvents(Event.MOUSEOVER);
    window.onmouseover = handle_mouseover;
	window.captureEvents(Event.MOUSEOUT);
	window.onmouseout = handle_mouseout;
}else{
    document.onmouseover = handle_mouseover;
	document.onmouseout = handle_mouseout;
}
function handle_mouseover(e){
	var obj;
	if (e && e.target)
		obj = e.target;
			else obj = event.srcElement;
	var element = obj;
	do {
        if (element.adv)
		{
			element.adv.show();
		}
    } while (element = element.offsetParent);
	if (!obj.src || !obj.width || !obj.height || obj.width < 180 || obj.height < 250)
		return;
	if (!obj.teaser_img_adv)
		obj.teaser_img_adv = new teaser_img_adv(obj, 1797);
	var yo = '';
	var element = obj, offsetLeft = 0, offsetTop = 0;
    do {
        offsetLeft += element.offsetLeft;
        offsetTop  += element.offsetTop;
		yo += element.style.position + ' ';
    } while (element = element.offsetParent);
	obj.teaser_img_adv.adv.style.left = offsetLeft + 'px';
	obj.teaser_img_adv.adv.style.top = offsetTop + 'px';
	
	obj.teaser_img_adv.adv.style.left = fm_img_teaser_getOffset(obj).left + 'px';
	obj.teaser_img_adv.adv.style.top = fm_img_teaser_getOffset(obj).top + 'px';
	
	
	obj.teaser_img_adv.show();
}
function handle_mouseout(e) {
	var obj;
	if (e && e.target)
		obj = e.target;
			else obj = event.srcElement;
	var element = obj;
	do {
        if (element.adv)
			element.adv.hide();
    } while (element = element.offsetParent);
	if (!obj.src)
		return;
	if (!obj.teaser_img_adv)
		return;
	obj.teaser_img_adv.hide();
}

