function add_favorite(a){
        $.get('/bitrix/stats.php',{WORK_ID:$(a).attr('data'),EVENT:'ADD_FAVORITE'}, function(data) {
                b = $(a).parent();
                $.cookie("IN_FAVORITE_"+$(a).attr('data'),"Y",{ expires: 365,  path: "/"});
                $(a).remove();
                $(b).html($(b).html()+'Cпасибо. Ваш голос учтен');
        });
}

$(document).ready(function(){
	$('tt').each(function(){
 		$(this).after($(this).attr('w')).remove();
	});
});


$(document).ready(function() {
	var currentPage = window.location.pathname;
   // $(':input').blur(function () {
    //	if($(this).val().length > 0){
      //  	pageTracker._trackEvent("Form: " + currentPage, "input_exit", $(this).attr('name'));
        //}
    //});
//    pageTracker._trackPageview();
  //  pageTracker._trackPageLoadTime();
});

