$(document).ready(function(){
	$(window).load(function() {
		$('#slider').nivoSlider({effect: 'fade', pauseTime: 8000, animSpeed: 1000, controlNav: false, directionNav: false});
	});
});
// zmena obrazku u formulorovych tlacitek a obrazku s tridou "button"
$(function()
{
	$("input[type='image'].button, img.button").each(function() {
		var path = this.src;
		var hoverPath = path.substring(0, path.length - 5) + '1.gif';

		imgs = Array(1);
		i = imgs.length + 1;
		imgs[i] = new Image();
		imgs[i].src = hoverPath;

		$(this).hover(
      		function () {
        		this.src = hoverPath;
      		},
     		function () {
       			 this.src = path;
      		}
		)
		.focus(function() {
			this.src = hoverPath;
		})
		.blur(function () {
			this.src = path;
		});
	})
})
