$(document).ready(function() {

				$("#remote img").hover(
				
					function(){
						
						$(this).addClass("hover");
						
						
					},
					function(){
						
						$(this).removeClass("hover");
						
					}
				
				
				
				);
				
				$("#remote img").click(showImage);
				
				$("#remote").children("img:first").click();
				
			});
			
			function showImage()
			{
					$("#screen").fadeOut('fast');
					$("#screen").attr("style","display: none; background-position: center center; background-repeat: no-repeat; background-image: url("+$(this).attr("rel")+")");
					$("#screen").fadeIn('fast');
					$("#description").html($(this).attr("title"));
			}
