function YouBox(VideoID){
	
	jQuery(document.body).append('<div class="YouBoxWrapper"><div class="YouBoxWrapped"><iframe style="width:595px;height:395px;" frameborder=0 allowfullscreen="" src="http://www.youtube.com/embed/' + VideoID+ '?wmode=transparent&amp;rel=0"></iframe></div></div>');
			
	jQuery("div.YouBoxWrapper").click(function(event){
		jQuery('div.YouBoxWrapper').remove();
	});
	
}

function LightBox(HTMLContent){
	
	jQuery(document.body).append('<div class="YouBoxWrapper"><div class="YouBoxWrapped" style="width:600px;background:#fff;">'+HTMLContent+'</div></div>');
			
	jQuery("div.YouBoxWrapper").click(function(){
		jQuery('div.YouBoxWrapper').remove();
	});
	
}

function ImgLightBox(HTMLContent){
	
	jQuery(document.body).append('<div class="YouBoxWrapper"><div class="YouBoxWrapped" style="width:600px;background:#fff;"><img src="'+HTMLContent+'"/></div></div>');
			
	jQuery("div.YouBoxWrapper").click(function(){
												 jQuery('div.YouBoxWrapper').remove();
												 });
	
}


jQuery(document).ready(function() {
	jQuery('.videoicon').each(function(index) {
		$(this).append('<img id="videoicon_'+ index +'" src="skins/Skin_1/images/videoicon.png" />');
		if($(this).attr('rel')!=''){
			$('#videoicon_'+ index ).css('background-image','url(https://i2.ytimg.com/vi/'+ $(this).attr('rel') +'/default.jpg)');	 				
			
			var VideoID = $(this).attr('rel');
			
			$(this).click(function(){
				
				jQuery(document.body).append('<div class="YouBoxWrapper"><div class="YouBoxWrapped"><iframe style="width:595px;height:395px;" frameborder=0 allowfullscreen="" src="http://www.youtube.com/embed/' + VideoID+ '?wmode=transparent&amp;rel=0"></iframe></div></div>');
						
				jQuery("div.YouBoxWrapper").click(function(event){
					jQuery('div.YouBoxWrapper').remove();
				});
				
			});
			
		}		
    	//alert(index + ': ' + $(this).text());
	});
	
	jQuery('.videoicon2').each(function(index) {
		//$(this).append('<img id="videoicon_'+ index +'" src="skins/Skin_1/images/videoicon.png" />');
		if($(this).attr('rel')!=''){
			$('#videoicon_'+ index ).css('background-image','url(https://i2.ytimg.com/vi/'+ $(this).attr('rel') +'/default.jpg)');					
			
			var VideoID = $(this).attr('rel');
			
			$(this).click(function(){
				
				jQuery(document.body).append('<div class="YouBoxWrapper"><div class="YouBoxWrapped"><iframe style="width:595px;height:395px;" frameborder=0 allowfullscreen="" src="http://www.youtube.com/embed/' + VideoID+ '?wmode=transparent&amp;rel=0"></iframe></div></div>');
						
				jQuery("div.YouBoxWrapper").click(function(event){
					jQuery('div.YouBoxWrapper').remove();
				});
				
			});
			
		}		
    	//alert(index + ': ' + $(this).text());
	});
});
