$(document).ready(function() {

	if ($('.posterVideoImage').length) {
	
		$('.posterVideoImage').each(function() {
			var image = $(this);
		
			if (image.siblings('.sliderboxVideo').length > 0) {
				var video = $(this).siblings('.sliderboxVideo');

				image.parent().append('<a id="startPageLink" href="http://www.rene-lezard-shop.de/php/partner/index.php?afnr=2817" target="_blank" class="startPageLink hidden">&nbsp;</a><a id="startPageSaleLink" target="_blank" href="http://www.rene-lezard-shop.de/#suche:loadSucheSaleWomen():1326980689870" class="startPageLink hidden">&nbsp;</a>   ');

/*
				$('#startPageWomenLink').click(function() {
					$('.startPageLink').addClass('hidden');
					image.attr('src', '/fileadmin/templates/startpage/teaser-women.jpg');
				});

				$('#startPageMenLink').click(function() {
					$('.startPageLink').addClass('hidden');
					image.attr('src', '/fileadmin/templates/startpage/teaser-men.jpg');
				});
*/


				var duration = video.data('duration');
/* var duration = 1 */
				if (duration) {
					window.setTimeout(function() {
						video.hide();
						$('.startPageLink').removeClass('hidden');
						image.show();
					}, duration*1000);
				}
			}
		});
	}

});
