function mail(name, domain, style) {
	document.write('<a h'+'ref="'+'mai'+ 'lto:'+name+'@'+domain+'" style="'+style+'">'+name+'@'+domain+'</a>');
}

 $(document).ready(function(){
    
    $("table.x .one_tr td").hover(
      function () {
        $(this).parent('tr').children('td').toggleClass("invert");
      }, 
      function () {
       $(this).parent('tr').children('td').removeClass("invert");
      }
    );
	
	$("#vopros input").change(function() {
		$("#vopros input").parent("p").removeClass("active");
		$("#vopros textarea").parent("p").removeClass("active");
	});
	$("#vopros input").focus(function () {
		$("#vopros input").parent("p").removeClass("active");
		$("#vopros textarea").parent("p").removeClass("active");
		$(this).parent("p").addClass("active");
		});
	$("#vopros textarea").focus(function () {
		$("#vopros input").parent("p").removeClass("active");
		$(this).parent("p").addClass("active");
		});
	
	$(function() {
	$('#foto a').lightBox({fixedNavigation:true});
		});
  });
