//////////////////////////////////////////////////////////////////////////////
$(document).ready(function(){
		
    		$("#dim").css("height", $(document).height());
    		
    		$(".maplink").click(function(){
    			$("#dim").fadeIn();
    			return false;
			});
    		
    		$(".close").click(function(){
    			$("#dim").fadeOut();
    			return false;
			});
			
		
		});
		
		$(window).bind("resize", function(){
		 	$("#dim").css("height", $(window).height());
		});
////////////////////////////////////////////
$(document).ready(function(){
		
    		$("#dim2").css("height", $(document).height());
    		
    		$(".ready_work").click(function(){
    			$("#dim2").fadeIn();
    			return false;
			});
    		
    		$(".close2").click(function(){
    			$("#dim2").fadeOut();
    			return false;
			});
			
		
		});
		
		$(window).bind("resize", function(){
		 	$("#dim2").css("height", $(window).height());
		});
////////////////////////////////////////////
/////////////////////////////////////////////////////
function getCity (C) {
document.all.City.value = C;
}
