$(function(){
	$(".servPanel").load("service_tel.html",addPopUp);
	function addPopUp(){
		$(".servTel").click(function(){
			$(".servPanel").fadeIn();
			vAlign($(".servPanel img"));
									   });
		$(".servPanel").click(function(){
			$(this).fadeOut();					   
									   });
		
	}
	
	function vAlign(element){
		var screenH = document.documentElement.clientHeight;
		var h = $(element).height();
		var mTop = (screenH-h)/2;
		$(element).css("margin-top",mTop);
	}
})
