$(document).ready(function(){       
   
    $('.thickbox').lightBox({fixedNavigation:true});
    
    $('.content table tbody tr:odd').addClass('even');
    
    $('.wrap-fragments').pdTabs({}); 
    
    /*
    $('.params-box').each(function(){
		$('.hide', this).hide();
		$('h3', this).css({
			'cursor': 'pointer',
			'background': 'url("../img/bg/params-row-down.png") 8px 50% no-repeat'
		});
		
		$('.item', this).each(function(){
			var item = $(this);
        	item.data('status', false);
		        
        	$('h3', item).click(function(){
				if(item.data('status'))
		        {
		            $('.hide', item).slideUp('slow');
		            $(item).data('status', false);
		            $(this).css('background', 'url("../img/bg/params-row-down.png") 8px 50% no-repeat');
		        }
		        else
		        {
		            $('.hide', item).slideDown('slow');
		            $(item).data('status', true);
		            $(this).css('background', 'url("../img/bg/params-row-up.png") 8px 50% no-repeat');
		        }
			})
		});
	});*/
         
  
});

