	function refreshIframe() {
		
		jQuery.each($("iframe"), function() {
			$(this).attr({
				src: $(this).attr("src")
			});
		});
		
	$("#screencontainer").animate({right: "0px"}, 400);	
		
	}
	
	$(document).ready(function() {
	//$("#info").hide();
	$('#infobtn').toggle(

		function(){
			
		$("#info").animate({left: "0px"}, 400);
		//$("#info").fadeIn('fast');
		},
		function()
		{
		$("#info").animate({left: "-190px"}, 400);
		//$("#info").fadeOut('fast');
		
		});
	
		$('#gallerybtn').toggle(

			function(){

			$("#screencontainer").animate({right: "-365px"}, 400);				
			
			},
			function()
			{
			$("#screencontainer").animate({right: "0px"}, 400);
			
		});
		
		$('#refreshbtn').click(function() {
                location.reload();
		});
		

	});

