$(document).ready(function ()
{
	$(".forma").forma();
	
	// Counters
		var counters_click=function ()
		{
			$(".counters_container").css("opacity", 1).find('a').unbind('click', counters_click);
			return false;
		};
		$(".counters_container").removeClass('hid').css("opacity", 0.1).animate({'opacity': 0}, 100).find('a').click(counters_click);
		$(".counters_container").click(function ()
		{
			$(".counters_container").css("opacity", 1).find('a').unbind('click', counters_click);
		});
	// Counters End
	
	// Кнопки вконтакте
		$(".services").css('opacity', 0.7).hover(function ()
		{
			$(this).css('opacity', 1);
		}, 
		function ()
		{
			$(this).css('opacity', 0.7);
		}).click(function ()
		{
			popup($(this).attr("_http"));
		});
	// Кнопки вконтакте
});

var _get=new Array();

// Visitor Click
	function visitor_click(_id)
	{
		$("#"+_id).click();
	}
// Visitor Click ENd


