// ���������� ����

/* $(document).ready(function() {
  		$(".top-menu li").hover(
			function () {
				$(this).addClass('active');
			},
			function () {
				$(this).removeClass('active');
			}
		);
}); */

// ������� ������

$(document).ready(function(){

    $("td.lcoll").click(function() {
    	$('td.active').removeClass('active');
  		$(this).addClass('active');
	});

	$("a.close").click(function() {
  		$(this).parents('div.pop-up').css('display','none');
		$(this).parents('div.pop-wrapper').prev('div.pup').css('display','none');

	});

});

// ����������� ���������

$(document).ready(function(){
/*
	$("div").mousemove(function(e){
		var pageCoords = "( " + e.pageX + ", " + e.pageY + " )";
		var clientCoords = "( " + e.clientX + ", " + e.clientY + " )";
		$("span:first").text("( e.pageX, e.pageY ) - " + pageCoords);
		$("span:last").text("( e.clientX, e.clientY ) - " + clientCoords);
	});
*/
	$('.all').mousemove(function(e){
		$('#tp-1').css({'top': + e.clientY, 'left': + e.clientX});
	});

	$('.search-box div.list input').hover(
		function() {
			$('.tooltype').css({'visibility':'visible'});
		},
		function() {
			$('.tooltype').css({'visibility':'hidden'});
		}
	);

});

// ���������� ������

$(document).ready(function() {

  		$(".open-list").click(function() {
  			$(this).next('ul').addClass('active');
		});

		$("ul.ullist").mouseleave(function(){
  			$(this).removeClass('active');
	    });

		$("ul.ullist").click(function() {
  			$(this).removeClass('active');
		});


});

// ���� ������ � ������ � IE

$(document).ready(function() {
//  		$("button.list").textShadow('0 1px 0 #FCDE9C');
//		$(".but-2").textShadow('0 1px 0 #C4E07E');
});







































