$(document).ready(function() {
	showCounter();
	showBigImage();
	toggleParagraph();
});


function showCounter()
{
	document.getElementById('footerCounter').innerHTML = '<a href="http://www.liveinternet.ru/click" '+'target=_blank><img src="http://counter.yadro.ru/hit?t18.5;r'+escape(document.referrer)+((typeof(screen)=='undefined')?'':';s'+screen.width+'*'+screen.height+'*'+(screen.colorDepth?screen.colorDepth:screen.pixelDepth))+';'+Math.random()+'" alt="liveinternet.ru: iieacaii ?enei oeoia ca 24 ?ana, iinaoeoaeae ca 24 ?ana e ca naaiai\y" '+'border=0 width=88 height=31></a>';
}


function falshEmb(){
	var flash = document.getElementById('textPageFileList').getElementsByTagName('div');

	for( var i = 0 ; flash.length > i; i++ ){
		if(flash[i].getAttribute('id')){
			var flash_file = flash[i].getAttribute('value');
			var so = new SWFObject("player.swf","mymovie",250, 24);
			so.addParam("FlashVars", "playerID=1&amp;bg=0xf8f8f8&amp;leftbg=0xeeeeee&amp;lefticon=0x666666&amp;rightbg=0xcccccc&amp;rightbghover=0xff7d48&amp;righticon=0x666666&amp;righticonhover=0xFFFFFF&amp;text=0x666666&amp;slider=0x666666&amp;track=0xFFFFFF&amp;border=0x666666&amp;loader=0xff7d48&amp;soundFile="+flash_file);
			so.addParam("menu", "false");
			so.write(flash[i]);
		}
	}
}


function toggleParagraph(){
	$(".toggleParagraphContainer").hide(); 

	//Switch the "Open" and "Close" state per click
	$("h2.paragraphTrigger").toggle(function(){
		$(this).addClass("active");
		}, function () {
		$(this).removeClass("active");
	});

	//Slide up and down on click
	$("h2.paragraphTrigger").click(function(){
		$(this).next(".toggleParagraphContainer").slideToggle("fast");
	});
	
	$('#siteBlock').css('height','100%'); //для ие6 костыль

};


function showBigImage(){
	$("a.single_image").fancybox({
		'zoomOpacity' : true,
		'overlayShow' : false,
		'zoomSpeedIn' : 150,
		'zoomSpeedOut' : 150 
	}); 
}


//запоминает последнюю открытую вкладку на стр. расписаний
function toggleTimetableSeasons(idNumber){
	var name = "year"; // имя cookie
	var tmp = idNumber; // записываемое значение
	document.cookie = name + '=' + idNumber; // устанавливаем cookie с помощью функции set_cookie
	
	$('div.seasonContentBlock').fadeOut('fast');
	$('div.seasonContentBlock' + idNumber).fadeIn('fast');
	
	$('li.yearItem').removeClass('active').addClass('notActive');
	$('li.yearItem' + idNumber).removeClass('notActive').addClass('active');
	
	$('#siteBlock').css('height','100%'); //для ие6 костыль
}


function lastActTab(lastYear){
	if(get_cookie('year')){
		toggleTimetableSeasons(get_cookie('year'));
	}
	else{
		toggleTimetableSeasons(lastYear);
	}
}


function get_cookie(name){
	cookie_name = name + "=";
	cookie_length = document.cookie.length;
	cookie_begin = 0;
	while (cookie_begin < cookie_length){
		value_begin = cookie_begin + cookie_name.length;
		if (document.cookie.substring(cookie_begin, value_begin) == cookie_name){
			var value_end = document.cookie.indexOf (";", value_begin);
			if (value_end == -1){
				value_end = cookie_length;
			}
			return unescape(document.cookie.substring(value_begin, value_end));
		}
		cookie_begin = document.cookie.indexOf(" ", cookie_begin) + 1;
		if (cookie_begin == 0){
			break;
		}
	}
	return null;
}




   





















