<!--
$(document).ready(function(){

$(".blockLeft").hover(
  function () {
    $(this).addClass("activeLeft");
  },
  function () {
    $(this).removeClass("activeLeft");
  }
);

$(".blockRight").hover(
  function () {
    $(this).addClass("activeRight");
  },
  function () {
    $(this).removeClass("activeRight");
  }
);

});
function v_mail(a,b,c)
{
	var loc = "mailto:" + a + '@' + b + '.' + c;
    document.location=loc;

}
//-->
