jQuery(document).ready(function(){

	$('#type1').css('background', '#fff');
	$('#type1').css('border', '1px solid #ECECEB');
    
    $('#type1').click(function() {
    	$('table.type2').hide();
    	$('table.type1').show();
    	$(this).css('background', '#fff');
    	$(this).css('border', '1px solid #ECECEB');
    	$('#type2').css('background', '#ECECEB');
    	$('#type2').css('border', '1px solid #fff');
    });
    $('#type2').click(function() {
    	$('table.type1').hide();
    	$('table.type2').show();
    	$(this).css('background', '#fff');
    	$(this).css('border', '1px solid #ECECEB');
    	$('#type1').css('background', '#ECECEB');
    	$('#type1').css('border', '1px solid #fff');

    });
   // $('a.facybox1').click(function() {
    	
//    	$('.facybox1').fancybox();
//    	$('.facybox2').fancybox();
   // });
   
 
//    
//
//
// 

	$('.coment_replays').click(function(){
		$(this).parent().children('.form_replays').fadeIn();
		$(this).fadeOut();
	});
	$('.form_replays').each(function(){
		if ( $(this).children().find('ul.error_list').length > 0 ) {
			$(this).fadeIn();
		}
	});



});

