$(document).ready(function () {
	$('a:has(img)[href$=".gif"],a:has(img)[href$=".GIF"],a:has(img)[href$=".jpg"],a:has(img)[href$=".JPG"],a:has(img)[href$=".jpeg"],a:has(img)[href$=".JPEG"],').click(
		function (e) 
		{
			var pop_imglink = $(this).attr('href');
			$('#tvscreen').css('top',$(window).scrollTop());
			$('#tvscreen').css('left',$(window).scrollLeft());
			$('#tvscreen').css('width',$(window).width());
			$('#tvscreen').css('height',$(window).height());
			$('#tvscreen  img').attr('src',pop_imglink);
			$('#tvscreen').css('display','block');
			return(false);
		}
	);
	$('#tvscreen').click(function(){$(this).css('display','none')});
});

