var hoverImg2AnimatStatus=0;
teaser2 = {
	'p':null,
	'b':teasers,
	'load':function()
	{
		$(".hoverImg2").hover(
		
				function () {
					if (hoverImg2AnimatStatus) return;
							hoverImg2AnimatStatus++;
					$(this).animate({
								top:-30,
								marginLeft:-80,
								width:290,
								height:195
						}, 150, function(){ hoverImg2AnimatStatus=0; }
						);
				}, 

			function () {
	
					$(this).animate({
								
								top:0,
								marginLeft:0,
								width:195,
								height:131,
								left:0
						}, 150, function(){  }
						);
				}
		);
		jQuery(this.p).css('display','block');
		
	},
	'render':function()
	{
		window.document.write('<div class="zoomItemsBox2" id="teaser2" style="display:none;"></div>');
		this.p = document.getElementById('teaser2');
		for(var i=0;i<this.b.length;i++)
		{
			var d = document.createElement('DIV');
			d.className = 'itemZoom2';
			var a = document.createElement('A');
			jQuery(a).attr({'href':this.b[i][2], 'target':'_blank'});
			var y = document.createElement('IMG');
			jQuery(y).attr({'src':this.b[i][1], 'class':'hoverImg2', 'alt':''}).appendTo(a);
			var e = document.createElement('DIV');
			jQuery(e).attr({'class':'imgPlaceHolder2'});
			var f = document.createElement('DIV');
			var g = document.createElement('A');
			jQuery(g).attr({'href':this.b[i][2],'target':'_blank'}).html(this.b[i][3]);
			jQuery(f).attr('class','zoomImgCaption2').append(g);
			
			if (this.b[i][6])
			{
				var x = document.createElement('img');
				jQuery(x).attr({'src':this.b[i][6], 'width':'1', 'height':'1', 'border':'0'});
				jQuery(x).css('border','none');
				jQuery(d).append(x);
			}
			
			jQuery(d).append(a).append(e).append(f);
			jQuery(this.p).append(d);
		}
	}
};
teaser2.render();
jQuery(function(){
	teaser2.load();
});


