/*
 * litvideo Trailer-DB v2.4
 * http://litvideo.de
 *
 *
 * Datum: 2011-02-08 
 */


$(document).ready(function() {
	var trailers = $("div[id*='trailer_ean_']");

	if(trailers.length > 0) {
		trailers.each(
				function(index) {
					loadTrailer(trailers[index].id);
				});

	}
});



function loadTrailer(id) {
	
	var trailer_div = $("#" + id);
	var width = trailer_div.width() != null && trailer_div.width() > 0 ? trailer_div.width() : 250;
	var height =  width * 0.5625; 
	var flashheight = height + 20;
	
	if(id) {
		var tiles = id.split("_");
		
		if(tiles.length == 3 || tiles.length == 4) {

                var ean = tiles[2];
                var sid = tiles.length == 4 ? tiles[3] : "";
			
			$.ajax({
				dataType: 'jsonp',
				jsonp: 'litvideo',
				url: 'http://46.4.59.142/trailerdatenbank/trailer.php',
				data: {ean:ean, sid:sid},
				success: function (data) {
									
					if(data.filename && (ean == data.ean)) {
						var filename = data.filename;
						var html = '';				
						
						html = '<video class="video-js" width="'+width+'" height="'+height+'" controls  poster= "http://46.4.59.142/trailerdatenbank/source/posterpic/' + filename + '.jpg">' +
                               '<source src="http://46.4.59.142/trailerdatenbank/source/mp4/'+filename+'.mp4" type=\'video/mp4; codecs="H.264, avc1.42E01E, mp4a.40.2"\' />' +
                               '<source src="http://46.4.59.142/trailerdatenbank/source/ogv/'+filename+'.ogg" type=\'video/ogg; codecs="theora, vorbis"\' />' +   
							   '<object id="player"  name="player" width="'+width+'" height="'+flashheight+'"> ' + 
		                       '<param name="movie" value="http://46.4.59.142/trailerdatenbank/flashplayer/player.swf" /> ' +
		                       '<param name="FlashVars" value="flv=http://46.4.59.142/trailerdatenbank/source/mp4/'+filename+'.mp4&startimage=http://46.4.59.142/trailerdatenbank/source/posterpic/'+filename+'.jpg&configxml=http://46.4.59.142/trailerdatenbank/flashplayer/config.xml" /> ' +
							   '<param name="configxml" value="http://46.4.59.142/trailerdatenbank/flashplayer/config.xml" />' +
		                       '  <embed  ' +
							   '   type="application/x-shockwave-flash" ' +
			                   '   id="player2" ' +
			                   '   name="player2" ' +
			                   '   src="http://46.4.59.142/trailerdatenbank/flashplayer/player.swf" ' +
			                   '   width="'+width+'" ' + 
			                   '   height="'+flashheight+'" ' +
			                   '   allowfullscreen="true" ' +
							   '   configxml="http://46.4.59.142/trailerdatenbank/flashplayer/config.xml" ' +
							   '   startimage="http://46.4.59.142/trailerdatenbank/source/posterpic/'+filename+'.jpg" ' +
							   '   FlashVars="flv=http://46.4.59.142/trailerdatenbank/source/mp4/'+filename+'.mp4&startimage=http://46.4.59.142/trailerdatenbank/source/posterpic/'+filename+'.jpg&configxml=http://46.4.59.142/trailerdatenbank/flashplayer/config.xml" ' +
                               '   />' + 
                               '</object>' + 
	                           '</video>';
						
						html = '<!-- GEMA-HINWEIS: Ansprechpartner fuer die GEMA-Abrechnung des eingebetteten Werbevideos ist die LitVideo GmbH, Hamburg -->\r' + html;
						trailer_div.html(html);
						trailer_div.show();
					}
				}
			});
		}
	}
}
