
/* - - - - - - - - - - - -
 * Creator: style-nes
 * URL: style-nes.com
 * Email: style-nes@ya.ru
 * - - - - - - - - - - - - */


$(document).ready(function() {
	// Scroll up to page
	$('.onTop').click(function(){
		$('html, #top_nav').animate({scrollTop:0}, 'slow'); 
		return false;
	});
	
	// Scroll up to page
	$('#center_cells a[target="_blank"]').addClass("open_blank");
	
	
	//Spoiler
	$('.spoiler_head').click(function(){
    	$(this).next().toggle("normal")
	})
	//Spoiler all show
	$('.spoiler_show').click(function(){
    	$("#center_cells").find(".spoiler div").show();
		return false
	})
	//Spoiler all hide
	$('.spoiler_hide').click(function(){
    	$("#center_cells").find(".spoiler div").hide();
		return false
	})
});
