$(function(){
	
	
	$("a[rel=external]").each(function(){
		    $(this).attr( 'target' , '_blank' );
		});

	
	$('.top_tekst_div').each( function() {
					
		if( $(this).next().next().attr('class') == 'tabel_cel_2 tekst_div' ){
		
			$(this).next().next().css('border-top' , '1px dashed #918f8c');
			$(this).next().next().css('border-bottom' , '1px dashed #918f8c');
			$(this).next().next().css('color' , '#918f8c');
			$(this).next().next().css('color' , '#918f8c');
			$(this).next().next().css('padding' , '5px 0');
			
		
		}
		
	});
	
	
});