jQuery(function($) {
	
	var Pos1 = "110";
	var Pos2 = "285";
	var Pos3 = "470";
	var Pos4 = "680";
	
	$("div#scroll").attr("style","left: 110px;");
	
	function Link1 () {	$("div#scroll").animate({"left":"110px"},"slow"); }
	function Link2 () { $("div#scroll").animate({"left":"285px"},"slow"); }
	function Link3 () { $("div#scroll").animate({"left":"470px"},"slow"); }
	function Link4 () { $("div#scroll").animate({"left":"680px"},"slow"); }
	
	function TarifIn() {
		$(".services").addClass("none");
		$(".services").removeAttr("style");
		$(".services").fadeOut("flow");
		$(".tarif").fadeIn("flow");
		$(".tarif").removeClass("none");
	}
	
	function ServicesIn() {
		$(".tarif").addClass("none");
		$(".tarif").removeAttr("style");
		$(".tarif").fadeOut("flow");
		$(".services").fadeIn("flow");
		$(".services").removeClass("none");
	}  
	
	$("div#scrollbar_left").click(function(){
		if ($("div#scroll").attr("style")=="left: "+Pos1+"px;" || $("div#scroll").attr("style")=="left: "+Pos1+"px; " || $("div#scroll").attr("style")=="left: "+Pos1+"px") { Link4 (); ServicesIn (); }
		if ($("div#scroll").attr("style")=="left: "+Pos2+"px;" || $("div#scroll").attr("style")=="left: "+Pos2+"px; " || $("div#scroll").attr("style")=="left: "+Pos2+"px") { Link1 (); TarifIn (); }
		if ($("div#scroll").attr("style")=="left: "+Pos3+"px;" || $("div#scroll").attr("style")=="left: "+Pos3+"px; " || $("div#scroll").attr("style")=="left: "+Pos3+"px") { Link2 (); ServicesIn ();	}
		if ($("div#scroll").attr("style")=="left: "+Pos4+"px;" || $("div#scroll").attr("style")=="left: "+Pos4+"px; " || $("div#scroll").attr("style")=="left: "+Pos4+"px") { Link3 (); TarifIn (); }
	});
		
	$("div#scrollbar_right").click(function(){
		if ($("div#scroll").attr("style")=="left: "+Pos1+"px;" || $("div#scroll").attr("style")=="left: "+Pos1+"px; " || $("div#scroll").attr("style")=="left: "+Pos1+"px") { Link2 (); ServicesIn (); }
		if ($("div#scroll").attr("style")=="left: "+Pos2+"px;" || $("div#scroll").attr("style")=="left: "+Pos2+"px; " || $("div#scroll").attr("style")=="left: "+Pos2+"px") { Link3 (); TarifIn (); }
		if ($("div#scroll").attr("style")=="left: "+Pos3+"px;" || $("div#scroll").attr("style")=="left: "+Pos3+"px;" || $("div#scroll").attr("style")=="left: "+Pos3+"px") {  Link4 (); ServicesIn (); }
		if ($("div#scroll").attr("style")=="left: "+Pos4+"px;" || $("div#scroll").attr("style")=="left: "+Pos4+"px; " || $("div#scroll").attr("style")=="left: "+Pos4+"px") { Link1 (); TarifIn (); }
	});

	$("div#scrollbar>ul>li").click(function(){
		if ($(this).text()=="Тарифные планы") { Link1 (); TarifIn (); }
		if ($(this).text()=="Услуги") { Link2 (); ServicesIn (); }
		if ($(this).text()=="Проверка доменов") { Link3 (); TarifIn ();	}
		if ($(this).text()=="Хостинг для CMS") { Link4 (); ServicesIn (); }
	});
				
});
