// JavaScript Document
$(function(){
	$(".gal-item").preloader();
	$('.news_box:last').after('<br/><a class="show_more_news" href="javascript: void(0);" onclick="news_box_show_all();">Отобразить все новости раздера...</a>').after('<a class="show_more_news" href="javascript: void(0);" onclick="news_box_show_5();">Показать 5 следующих новостей...</a>');
	news_box_show_5();
});

function news_box_show_5(){
	$('.news_box:hidden:lt(5) img.photo_mini').each(function(){
		$(this).attr('src', $(this).next().text());
	});
	$('.news_box:hidden:lt(5)').show();	
	
	if($('.news_box:hidden').length == 0)
		$('.show_more_news').hide();
}
function news_box_show_all(){
	$('.news_box:hidden img.photo_mini').each(function(){
		$(this).attr('src', $(this).next().text());
	});
	$('.news_box:hidden').show();
	$('.show_more_news').hide();
}
