$(document).ready(function(){
	Cufon.replace('#motto')('#menu li a', {hover: true})('h1')('#main h2')('#col-left h2')('#col-right h2')('#hp-tab-box h2')('#main h3')('#col-left h3')('#hp-menu h3')('#col-right h3')('#reasons-box ol li strong a', {hover: true})('legend');
});

// zmena obrázku u formulárových tlacítek a obrázku s trídou "button"
$(function()
{   
	$("input[type='image'], img.button").each(function() {
		var path = this.src;
		var hoverPath = path.substring(0, path.length - 5) + '1.gif';
		
		// prednactu nový obrázek do pameti
		imgs = Array(1);
		i = imgs.length + 1;
		imgs[i] = new Image();
		imgs[i].src = hoverPath;
		
		// na tlacítko zavesím události
		$(this).hover(
      		function () {
        		this.src = hoverPath;
      		}, 
     		function () {
       			 this.src = path;
      		}
		)
		.focus(function() {
			this.src = hoverPath;
		})
		.blur(function () {
			this.src = path;
		});
	})
})
