 $(document).ready(function() {
   $(".serv").mouseover(function() {

   $("#moving").load("/include/_script.php",{"serv":this.id, "minx":getMinX(), "maxx":getMaxX(), "miny":getMinY(), "maxy":getMaxY() });
// 	 $("#serv-descr").css({"margin-left":"100px"});
   });
 });

function chServ(idd)
{
		if(idd>0) 
		 $("#moving").load("/include/_script.php",{"serv":idd});	
 
}

function getMinX() {
	return 192;
}
function getMaxX() {
	return 220;
}
function getMinY() {
	var voffset = document.getElementById("string_contentwrapper").style.top.replace(/px/, "");
	voffset = voffset.replace(/pt/, "");
	voffset = Math.abs(voffset);
	return voffset;
}
function getMaxY() {
	return getMinY() + 115;
}
