﻿/*
===============================================
Developed by Iterium Capital.
January, 2011. http://www.iterium.org
===============================================
*/

$(window).load(function () {
	loadLiveInternet();
	$('#slider').nivoSlider({
		effect: "fade", //Specify sets like: 'fold,fade,sliceDown'
		slices: 7,
		animSpeed: 1000, //Slide transition speed
		pauseTime: 7000,
		startSlide: 0, //Set starting Slide (0 index)
		directionNav: false, //Next & Prev
		directionNavHide: false, //Only show on hover
		controlNav: true, //1,2,3...
		controlNavThumbs: true, //Use thumbnails for Control Nav
		controlNavThumbsFromRel: true, //Use image rel for thumbs
		controlNavThumbsSearch: ".jpg", //Replace this with...
		controlNavThumbsReplace: ".gif", //...this in thumb Image src
		keyboardNav: true, //Use left & right arrows
		pauseOnHover: true, //Stop animation while hovering
		manualAdvance: false, //Force manual transitions
		captionOpacity: 0.8, //Universal caption opacity
		beforeChange: function () { },
		afterChange: function () { },
		slideshowEnd: function () { }, //Triggers after all slides have been shown
		lastSlide: function () { }, //Triggers when last slide is shown
		afterLoad: function () { } //Triggers when slider has loaded
	});
});

function loadLiveInternet() {
	var img = new Image;
	var url = "http://counter.yadro.ru/hit?t52.6;r" + escape(document.referrer) + ((typeof (screen) == "undefined") ? "" : ";s" + screen.width + "*" + screen.height + "*" + (screen.colorDepth ? screen.colorDepth : screen.pixelDepth)) + ";u" + escape(document.URL) + ";" + Math.random();
	img.src = url;
}
