
$(document).ready(function(){
function favclear(){
	$.cookie("fav_names", "", { path: '/', expires: 7 });
	$.cookie("fav_links", "", { path: '/', expires: 7 });
	$("#favorites").html("");
}

	if (!$.cookie("fav_names")){
		$.cookie("fav_names", "", { path: '/', expires: 7 });
		$.cookie("fav_links", "", { path: '/', expires: 7 });
	}
	$("#favorites").html($.cookie("fav_links"));
	if ($("#favorites").html()!=""){
		$("#favorites").html("<p style=\"font-weight:bold; color:#005a8e;\">Выбранные репетиторы:</p><ul>"+$("#favorites").html()+"</ul><span onclick=\"javascript:favclear();\"><img id=\"favclear\" src=\"/img/clearlist.png\" style=\"cursor:pointer;\"></span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"/repetitors/search/\">Отправить заявку</a>");
	}
	$(".fav").click(function(){
		var inv_fav=$.cookie("fav_names");
		var favorites=$.cookie("fav_links");
		var name=$(this).attr("val1")+" "+$(this).attr("val2")+"<br>";
		var link='<li><a href="/repetitors/profile/'+$(this).attr("val1")+'/">'+$(this).attr("val2")+'</a></li>';
		if (inv_fav.indexOf(name)==-1){
			$.cookie("fav_names", (inv_fav+name), { path: '/', expires: 7 });
			$.cookie("fav_links", (favorites+link), { path: '/', expires: 7 });			
			$("#favorites").html($.cookie("fav_links"));		
			if ($("#favorites").html()!=""){
				$("#favorites").html("<p style=\"font-weight:bold; color:#005a8e;\">Выбранные репетиторы:</p><ul>"+$("#favorites").html()+"</ul><span onclick=\"javascript:favclear();\"><img id=\"favclear\" src=\"/img/clearlist.png\" style=\"cursor:pointer;\"></span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"/repetitors/search/\">Отправить заявку</a>");
			}	
		}
		$(this).hide();
	});
});
