$(document).ready(function(){
	
	$(".star").parents(".hoverable").hover(function(){
		$(this).find(".star").addClass("star_hover");
	}, function(){
		$(this).find(".star").removeClass("star_hover");
	});
	
	$(".star").parent().click(function(e){
		e.preventDefault();
		href = $(this).attr("href");
		
		$.ajax({
			type: "POST",
			url: href
		})
		
		
		if ($(this).find(".star").hasClass("star_selected")) {
			$(this).find(".star").removeClass("star_selected");
		} else {
			$(this).find(".star").addClass("star_selected");
			$(this).after("<span class='marked' style='left:"+ $(this).position().left +"px; top:"+ $(this).position().top +"px;'>помечено</span>");
				setTimeout(function() {
					$(".marked").fadeOut("slow", function(){
							$(this).remove();
					});
				}, 1000);
		}
	});
	
	
	var deviceAgent = navigator.userAgent.toLowerCase();
	var agentID = deviceAgent.match(/(iphone|ipod|ipad)/);
	if (agentID) {
 
		$('body').css({'-webkit-text-size-adjust':'none'});
 
	}
});
