$(function(){
	$(".content tr:nth-child(even)").addClass("even");
});
(function($){
	$.fn.simpleButton = function(){
		this.mousedown(function(){
			$(this).addClass('mousedown');
		}).mouseup(function(){
			$(this).removeClass('mousedown');
		}).mouseleave(function(){
			$(this).removeClass('mousedown');
		});
	};
})(jQuery);


$(function(){
		$('.button-game').click(function(event){
			yaCounter4084567.reachGoal('gameclick');
			yaCounter4084567.notBounce();
			return true;
		});
		$('.gameonline a').click(function(event){
			yaCounter4084567.reachGoal('avtoclick');
			yaCounter4084567.notBounce();
			return true;
		});
		
	$('.simple-button').simpleButton();
	$('a#click-box-one').click(function (event) {
		event.preventDefault();
		$("#box-two").hide();
		$("#box-one").show();
    });
	$('a#click-box-two').click(function (event) {
		event.preventDefault();
		$("#box-one").hide();
		$("#box-two").show();
    });
});
