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_816{	height:200px;	table-layout:fixed;	overflow:hidden;	background-color:#;	border-spacing:3px;	border-collapse:separate; } div.fm_teaser_816{	color:#FFFF33;	font-size:12px;	font-family:Arial;	overflow:hidden;	width:100%;	height:100%;	text-align:center; } table.fm_teaser_block_816 td{	} table.fm_teaser_block_816 div.fm_teaser_816 a{ color:#FFFF33; } table.fm_teaser_block_816 div.fm_teaser_816 a:hover{	color:#; } </style> ';
var super_teaser__teaser_template = '<div class="fm_teaser_816">	<table width="100%" height="120"><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;" src="http://photosex.biz/imager/w_120/h_120/{THUMB_HOST_ID}.{THUMB_HOST_TYPE}" /></a>	</td></tr></table>	<a target="_blank" href="{URL}">{NAME}<br />	<small style="color:#;font-size:12px">{DOWNLOAD}&nbsp;&#187;</small>	</a>	</div> ';
var super_teaser__teaser_data = [{"name":"insex - iv test dsl","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=47PXQl_uqsdkjvmYCSF2ZLFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"ad0e16a3b950ae4a950f7bc282498eb8","thumb_hosting_type":"jpg","id_language":"2"},{"name":"[Manga] Hentai incest comic collection [ENG].rar","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=o5PjKQiMp6PiIHnFYsbdTg468BWJTLkQ9tS2RSTtEZc&id_profile=722","thumb_hosting_id":"5518bc8b02c6670b3f3016f59c58789c","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Hitoduma - Kasumisan","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=WofePl9lWnoDmhuhwF3clA468BWJTLkQ9tS2RSTtEZc&id_profile=722","thumb_hosting_id":"8c7ef1ac13202bcfed1fc5f7941fb447","thumb_hosting_type":"jpg","id_language":"2"},{"name":"PRIVATE ROOM 2.rar","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=b4ETgkhmcvRrlUNV1CeNtg468BWJTLkQ9tS2RSTtEZc&id_profile=722","thumb_hosting_id":"f9ba44a1880df4d350c14fb8b11e1720","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Oral Deluxe Anthology {CD1} [Marc Dorcel 2007]","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=fNWn3F0Oa-C7sNVhVd_Rz7FS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"773763bcf495b748397d2555c1e0de1c","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Uncensored Japanese Adult Video - 03","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=8dJLRlIeh0gOPLNajw8HTLFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"ec44ad34eb828eddd1cd5dc2138aa427","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - Tests 14 (11 Aug 2004)","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=lMZZIUtjI3SNtpbfnq6_sLFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"80629f907e5707a228f4a0a4a020d640","thumb_hosting_type":"jpg","id_language":"2"},{"name":"insex - bettytest dsl","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=8pvaQQ_4oGf4XqxvbOuoRbFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"7b5ed004fd1261ac2d5befe7a0d93e1e","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Get Ready for Cool School(LuckyYoungsters)","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=AVbaKU_My6bEx_nWBupYVrFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"2dedc265b5923f84c731b0126c2abda7","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Mahoushoujo Ai 2","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=d7jInM1_KoF-JaiiDvv3_A468BWJTLkQ9tS2RSTtEZc&id_profile=722","thumb_hosting_id":"afdd5056e67c4326072c459cff63d883","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Fuck My Ass (2009) DVDRip","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=7xyA3D3zES1bs8fsd7JKFXw7KA9SKB3Kp6sA6lTQUpw&id_profile=722","thumb_hosting_id":"fbaa5c766d1e678f18b23b7af6693653","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Dragon Knight - Wheel Of Time Vol.1","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=vRe4ytvXC2xsqWO08Zeu_w468BWJTLkQ9tS2RSTtEZc&id_profile=722","thumb_hosting_id":"30ad6082ccaeff9a4ff6e6f931f23e77","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Fetish Academy 5","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=3QpPCStVki1NLpcwlosRmLFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"a441ff863b201dff8035fa4c5b6f1d3d","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Comics from Randy Dave (incest) [ENG] (+39).rar","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=1gJhR7ayUigKfQXhUm4bHQ468BWJTLkQ9tS2RSTtEZc&id_profile=722","thumb_hosting_id":"4139ea74cd9c501fc7090ffe64f6d9bd","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Beautiful girl 2","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=-HuHCHgTqySUfsPgrApXsLFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"3f6d8359abceb4bf004b0a118ba6751e","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - Spanky (03-24-2004)","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=FtsN8Af9chA5B9ecrXCqqbFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"a62a3090d9921009aac5ef5c354d6146","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Phoenix Marie - Fucking Dungeon","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=JiJpl-KLlff60-Geb3ZyBbFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"b114646730e39441aed8740a13162bf3","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - DB 09-01-02","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=5EAveu_1JllikWIIF-ljKbFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"d33da8797ee26cec32bb27530add2299","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Group Breaking Harem ","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=7YqCgYml6-txggdqoE7b0LFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"953420d56c02d3a2ee9eefa41973073b","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - 65Dsl (Jen X)","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=Xt6KXIQNBQhpWaf051AgIbFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"95b4bbd20496a0aa4f98ac4905c78546","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Schwule Landliebe","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=-evu8IW5fFNWJ8_3x5mYcbFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"c81b64810ecaab2da9e0b309fb78a921","thumb_hosting_type":"jpg","id_language":"2"},{"name":"FINAL MONSTER X.AVI","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=xMMpzwkxJWgM1MzLZm1Lbw468BWJTLkQ9tS2RSTtEZc&id_profile=722","thumb_hosting_id":"1d51a552a5a4562dc2ea340a2a023afe","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Do You Know The Milfing Man Vol.1","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=rYBCIEPmjOzPx3kCMskSkQ468BWJTLkQ9tS2RSTtEZc&id_profile=722","thumb_hosting_id":"afeceb57acb57c2eac97705b277b906b","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Butthole Bukakke","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=SFBs2Lsg3tzzaWJvDMFBnLFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"31869c8a082d8a1b53934f4cb2627ed5","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Dominated Girls - Szilvia Lauren","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=cAlhSN9FdjaSNM5GRdhc5LFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"7c79b73a7175b1c3728e18a104cde903","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Nyoro Nyoro 3D 1","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=3UZulqHdcRh3rlZ74fHDgrFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"d6a168dde20b4811e5c1d483d677abc4","thumb_hosting_type":"jpg","id_language":"2"},{"name":"MC.Bizzare-Begierden.avi","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=gku0uZKbSbEQNSK_6z764nw7KA9SKB3Kp6sA6lTQUpw&id_profile=722","thumb_hosting_id":"dc9332d592c0089ade42d5707dd6f623","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - Madison","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=w3P0z8bSusgd31_WfP_SRLFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"db179f46355230c76133cac5ecd763dc","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Pornomation 1 - [3D SciFi Porno Animation]","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=PkzAqYkVq7AwqShiSSiIYLFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"78530492503763d07a34feb90d55a38d","thumb_hosting_type":"jpg","id_language":"2"},{"name":"I Like it Rough: Double Trouble","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=OARPpMhV--l6zI9ha5VfH8SnxTM2pnqzdUO1levX_kQ&id_profile=722","thumb_hosting_id":"650e9d754201105f09b84f1f68e96055","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - Escape (2 Oct.2002)","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=ZuGSooqJ5BDoPskb3pc0QrFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"f18ab9f5eaf0b67dcf6a5878c5f5cbe8","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Fraulein MINA - Rubber Object \u21164","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=woXgofn2gxVKw23OaSUtDbFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"94ad2f5f55e4c16de433121e6044def4","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Public Disgrace - Big Natural tits tied In Public","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=jwFoJmEUc5uDne5zZZ0wcMSnxTM2pnqzdUO1levX_kQ&id_profile=722","thumb_hosting_id":"5fa700eed78c01a8d7150ddfdd76c77b","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Sexual F","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=C7SQwCyBmSP5awwCDPYuEg468BWJTLkQ9tS2RSTtEZc&id_profile=722","thumb_hosting_id":"6f49a80d040552b70b6bfac58c8e8d48","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - Leftovers (Donna, 912, 813 and 626) (10 Nov 2004)","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=U2OCVSr1zsbuA0Sce8t8N7FS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"0cab826e29a435e8eab7b5f457c7cd65","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Polygon Love","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=FSJgoFma7SRvG3aULssaubFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"3db9b047ddc328dae7a3d3756933e5c9","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Fetish Academy 4","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=PWRl_AO3wnzjktztVWUzkLFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"1e6595b3df3dc0819dd050f98e38fa00","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Japan Prison Camp","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=VAg1nG1AGQdxic6O2ccZocSnxTM2pnqzdUO1levX_kQ&id_profile=722","thumb_hosting_id":"8e3e77213d5d14445415c417c233b2ef","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - 418 Clito Frust","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=hmpJT3IyR7uL7M5AhRqcvrFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"3782b4e24d74c0a757b89809b03f53d7","thumb_hosting_type":"jpg","id_language":"2"},{"name":"The Nuns Of Sexualministrant","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=cQ3mkKcWICinyRc3SR1uoQ468BWJTLkQ9tS2RSTtEZc&id_profile=722","thumb_hosting_id":"f2a39aed35e6ca6a005b1257c19f3de1","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Public Disgrace - Dana DeArmond  , Steve Holmes (Apr 3, 2009)","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=oxyVHkNeSEFYRo9cTp-wD7FS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"b0d1013ca62ac7ecdbb9734aadf687e2","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Maiden Breeder","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=zuaPZ7hzmg-E3YcUrrMBNA468BWJTLkQ9tS2RSTtEZc&id_profile=722","thumb_hosting_id":"b538d49b22edfeacf4bc1c913c3bd74d","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Maximum Perversum 100 - Extrem (2008) DVDRip","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=x3JI58UrIvFIgWvqlJt6EbFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"5e116bfd9e2147e0f09200edc3a8d238","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Youjo Houkai Fumi Nijira Reta Tsubomi Rei","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=z64ZJVLkeSYM9OK0u_97S7FS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"32005913b63185c0eab7d6c162ad559a","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Nasty Nurse in Bondage","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=2g7epy_z5H9hr76t2HrNcsSnxTM2pnqzdUO1levX_kQ&id_profile=722","thumb_hosting_id":"fa87c9a4baac03c9997d4fe018489580","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Japan RAPE","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=VN96LYuYlXNcHojQNVgL1rFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"c7b1ac9281d437c1c75b45df63be1548","thumb_hosting_type":"jpg","id_language":"2"},{"name":"SexandSubmission.com - Rita Faltoyano  ","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=bO4UaR7nHnd7hbRNm1QC0MSnxTM2pnqzdUO1levX_kQ&id_profile=722","thumb_hosting_id":"3794bc3195cbf2e1f99f931465cbcd5a","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - S4","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=hiZR8QmrLVB5sleXgcpa9LFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"d67e19455bfb784eb720fba13e7ba1c1","thumb_hosting_type":"jpg","id_language":"2"},{"name":"The Hentai Monster Hunter Sayaka","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=CaADE9IrSaE3qbMXeyVSfg468BWJTLkQ9tS2RSTtEZc&id_profile=722","thumb_hosting_id":"7bbffc94306cea53a81ab523006c5765","thumb_hosting_type":"jpg","id_language":"2"},{"name":"88 Disney porn scenes(cartoons) - all sex genres - free adult video!","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=-ltwm17oiQ0Gaa2HHQzbRbFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"e7f13ebd56e5542acb3f5918d291b181","thumb_hosting_type":"jpg","id_language":"2"},{"name":"insex - leeches dsl","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=dHYxkXFuWvnmCVBh-nGfbLFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"562f7fb4f26d61717ea58782a738a296","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - Soiled 1030 LF Jan 24Th 2002","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=6FBzbdNvuAAgNa6SKDINyrFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"591587cc0b4811d2acce29ca49f8aa1b","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - perry's test rope tutorial very fexible","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=tjTUg0i3PtEsPNFAVUTnabFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"a39e3aa070d0371622b06ac2fb1d13c9","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Juice Toys","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=L03LzlEOennHdkOPerMoQLFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"8abb1bd63ccef1e02dc34b164a40100b","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Twin","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=la12EYDWOEV2-k0uAT26urFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"f910df223ed896a64895d053dc07cece","thumb_hosting_type":"jpg","id_language":"2"},{"name":"insex - mummy 101","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=DTPRPqvtSQwiupmYWMdtW7FS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"d8e095a6f977769981ddd68e81f4b42b","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Savior","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=uNRjBYpWnn3RWYcoiE7m0g468BWJTLkQ9tS2RSTtEZc&id_profile=722","thumb_hosting_id":"eaf4742c7b342325e8b85a1a24fa60bb","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Sxtreme 28 (2009) DVDRip","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=jnUuk7CJO3pCzkkg54tKFsSnxTM2pnqzdUO1levX_kQ&id_profile=722","thumb_hosting_id":"73ee5050f9ee8246ebc30f2a3182eb69","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Naka Nunara Naka Seteyarou Sei Dorei.rar","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=ydrQBAdFkfR4imORo6tZPg468BWJTLkQ9tS2RSTtEZc&id_profile=722","thumb_hosting_id":"6ae7443ba5518fbdc37e0b329ef8f286","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Fraulein MINA - My Rubber Slave","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=QjHRR6yv2ZhjGllKk2GUObFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"7258d9cf34f8556447f0a5a03ac52e39","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Bare Ass-Busting Cum Pigs  ","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=R5fP4k7qgxUZgfUWItiJcbFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"630f24475d01ee763a1306fd17f3d4d8","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - 101 Live (From 03-29-01)","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=7ri0lpb118XquNZQL0YrDrFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"462a08e5618b4641faf278ad4ae905b3","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Fetish Academy 3","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=atkAo4JcTO2Xqhf5Ja8kKrFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"f59f2bb00a24f96739172243f7f4d31f","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Gothic - Rubber Ranch","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=HSOg2atinRsow48Jph9PUrFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"e7f041e34d35f019a11236dce60dbbd7","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Master Costello - Schwarze Traume","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=3UKgKCjwyGwY5ERChiV8eA468BWJTLkQ9tS2RSTtEZc&id_profile=722","thumb_hosting_id":"45edfeb35a0015905dc862ea3d96f864","thumb_hosting_type":"jpg","id_language":"2"},{"name":"My Teacher Is....","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=2LPyhg9NolcwLe2qV6fCBQ468BWJTLkQ9tS2RSTtEZc&id_profile=722","thumb_hosting_id":"d6c107c31504bed4ab149a0818cfa91f","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Space Prison - [High Quality 3D porn movies]","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=xnlnJEa8ckQqO3ccEO3klrFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"6f4b7e9418932cc4af5be0e72e5f2854","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Master Costello - Zofe Sophie Die Ankunft","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=WpCGc03FnmbhImw1-gfZ-A468BWJTLkQ9tS2RSTtEZc&id_profile=722","thumb_hosting_id":"177838012d926052a214a8f69ab2bd82","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Cage of Desire","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=_Q5I6-gf9Rrj1YbC0HHDVrFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"7615788d12f2e856c8053e4a80b5a3b8","thumb_hosting_type":"jpg","id_language":"2"},{"name":"insex - s4 interview dsl 2004","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=UXddalXy4-U5yDIM3Y3jQrFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"51bf49a140b9610239db08eded7a3e41","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Female Orgasm Mastery - Squirting Orgasms (Adult DVD) - [Genre: Female orgazm]","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=X3rSnsRksWzDQrMg0czv-LFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"6fee3a5b4ac3cb09d53d9eff2ef2e614","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - Sxs Training (2000-02-26)","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=wxYf1OcG2MeR6mgOJ1oIDrFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"cbc2c0259eeb32ea73a00e14d6482273","thumb_hosting_type":"jpg","id_language":"2"},{"name":"insex - swallow","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=fftGRcz9j5zp5uSpT1nDxLFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"81e651d540c84cb19a2ca2b674ff6cb8","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Brasileirinhas Carnaval 2008 (Adult DVD video)- extreme sex party - genre: allsex","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=-Y3WK45fhfS3V6OKe0zSNbFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"089bc6e7cb68db2f5a92bb73c763ccb8","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - Interlude Part2 DSL","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=dCiN7aLVr3lnWzsyavh-37FS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"2be9e91af5e50f2295a18ad7e2236c1a","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Patsy Plastic: The Plastic Slut","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=kU72eWdb4mieK6VEvC77prFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"522f9570b2546194d9d184e294d1b291","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - 831 live feed (the swan 2)","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=mb0SK04cy-hXqZ5cLYAsFLFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"e3aa4c8a1abfaf6bbf44aee70129e1d9","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Countdown To Delight","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=gdCGugl8fOVj0meQTRhQ8Q468BWJTLkQ9tS2RSTtEZc&id_profile=722","thumb_hosting_id":"a9f605c5f4297b357ab9fe72406e243d","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Master Costello - Stray Cats ","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=hkOzpMTr2Eqw_iAFBFm9eQ468BWJTLkQ9tS2RSTtEZc&id_profile=722","thumb_hosting_id":"a0e9adf8a7f7454fffcbc6892bbd4df5","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Aya","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=xjG0ytfO-TM82EpzDdSOvLFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"7bd0c52d36eb333c32f7d51a0eb4700b","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Master Costello Stachel der Wollust","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=4f73oVZUM1vU9TCzvclmIA468BWJTLkQ9tS2RSTtEZc&id_profile=722","thumb_hosting_id":"41ae257637f89974e2e517448edcf6c7","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Virtual AYA - (English translated version)","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=_lDE_KpXjIRFaRDy69pgzrFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"a2f2045e5d042f51e56058b41389752e","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Fetish Academy 2","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=-TCTIYewDNB2pDJ_Q-6wnbFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"fd0d64e08b71c14527be884dc9f06d63","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Man In Densha ","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=ni44F4MLFE5fhg3GCQr6uA468BWJTLkQ9tS2RSTtEZc&id_profile=722","thumb_hosting_id":"1d83d3a92042918e26d1edb9ddbd7e80","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - Shonta Gets Pregnant","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=wrYxteK2bPSKkthFJlTf4LFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"2e2f9cbb68b468d8f0254efcfa416ced","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Master Costello - Blind Date","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=4w5Zan0pLkQjqY4bKjTmug468BWJTLkQ9tS2RSTtEZc&id_profile=722","thumb_hosting_id":"047ed2db97458385f549b4bef85f76c1","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Lady Isis - Rubber Mummification","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=Pa6oH514iPVnG0jrCM9L57FS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"79f178b37f7a4d08c34735480eaecc83","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - 62oct lf1dsl","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=QawUsJaYvOK5MdwQYnX1orFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"6cf6c2d6c8649697c6886b120c617b26","thumb_hosting_type":"jpg","id_language":"2"},{"name":"PublicDisgrace - Dinner Party","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=HWKU0KNLFA85mBPtWgcv1cSnxTM2pnqzdUO1levX_kQ&id_profile=722","thumb_hosting_id":"31921f41ed37d23778ba9e6369df48b8","thumb_hosting_type":"jpg","id_language":"2"},{"name":"3D Animation Series 3 Tentacle Room","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=ljBKuhuR1Cq8pXBiU22FHbFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"b1f4154acf49c68709d542411c1a047f","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Master Costello - Lustschmerz Sonate","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=QRsjkwQG7NPRlp1LdXMiRbFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"e55a318998fd589545abd9599a2b9039","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Bored Boys 3","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=_Yflw50Q3cUGI-_FoCtyTbFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"a5b391712bc61145e05cb0a2aa2155bc","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Yarasetetsu! Teacher ","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=GRxt-cHLDejzQvIrkwwKMQ468BWJTLkQ9tS2RSTtEZc&id_profile=722","thumb_hosting_id":"b54416f23d8fd766467aa71d48308fca","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Oppai 2","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=whKhrPgFCkALudRcTaKwSQ468BWJTLkQ9tS2RSTtEZc&id_profile=722","thumb_hosting_id":"02480c9313262807e408998d3b5ec62b","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - 922 garage","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=IYyeLfoiY2w8QiNGpVwKl7FS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"c8da715dee21d99c4cd9e453d40bbde3","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - 1201 The Roommate","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=tlwhw2GKFfkREZdF-0tHQLFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"d058f4b0a36b6698623e0e0d1d3a7f9e","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Depravity Vol.1.avi","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=0a9VeflkcpkNPY4Y2jJ1_g468BWJTLkQ9tS2RSTtEZc&id_profile=722","thumb_hosting_id":"baa95e149a273659d0e4e19f5bce3946","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Old ladies extreme","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=y-SIIjJkeDXADzO5A9HaEnw7KA9SKB3Kp6sA6lTQUpw&id_profile=722","thumb_hosting_id":"adcf3980654c73f95ea6ebc0543886fd","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - Tests 8","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=0Z9KCWqQjYc96gMSxiRpXbFS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"bf9cfa17fa530b6319a15171083b9731","thumb_hosting_type":"jpg","id_language":"2"},{"name":"Insex - Tests 6","url":"http:\/\/pornfile.biz\/teaser_client.php?pcode=rMkEOmQb24p3CSVbNaxmq7FS4NW-NxEuD3IJP6UHJh4&id_profile=722","thumb_hosting_id":"af563aafef2743ee223fdf39be8b68ab","thumb_hosting_type":"jpg","id_language":"2"}];
var super_teaser__teaser_row_count=1;
var super_teaser__teaser_col_count=20;
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_816" 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="130" 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)/156);
	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, 816);
	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();
}
