$(document).ready(function(){
	$("table.data tr:even").addClass("colorbox");
	$(".button").hover(
		function(){ //over
	 	$(this).css('opacity','0.8');
			  },
    	function(){ //out
	  	$(this).css('opacity','1');
			  }
	);
	$(".msg-ok").click(function(){
			$(".msg-ok").fadeOut(200);
							  });
	$(".msg-error").click(function(){
			$(".msg-error").fadeOut(200);
							  });	
	$(".catBlock:has(img)>.rightInfo").css('width', '500px');

    // Anton!!!!!!!!!!!!!!!!!!!
    $('.faq-trigger').click(function(){
        if( $(this).hasClass('show') ){
            $(this).next('.faqcontent').slideDown(200);
            $(this).removeClass('show');
        }
        else{
            $(this).next('.faqcontent').slideUp(200);
            $(this).addClass('show');
        }
        return false;
    });
});

