var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-9062821-1']);
_gaq.push(['_trackPageview']);

(function() {
    var ga = document.createElement('script');
    ga.type = 'text/javascript';
    ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0];
    s.parentNode.insertBefore(ga, s);
})();

var scrolling = null;

function scroll_up() {
    var d = document.getElementById('klienci');

    d.scrollTop = d.scrollTop - 5;

    scrolling = window.setTimeout(function() {
        scroll_up();
    }, 100);
}

function scroll_down() {
    var d = document.getElementById('klienci');

    d.scrollTop = d.scrollTop + 5;

    scrolling = window.setTimeout(function() {
        scroll_down();
    }, 100);
}

function stop_scroll() {
    window.clearTimeout(scrolling);
}

$(document).ready(function() {

$("#show_mail").fancybox({
	'scrolling'		: 'no',
	'titleShow'		: false,
	'onClosed'		: function() {
	    $("#mail_error").hide();
	}
});

$("#show_mail_kontakt").fancybox({
	'scrolling'		: 'no',
	'titleShow'		: false,
	'onClosed'		: function() {
	    $("#mail_error").hide();
	}
});

 $("#mail_error").hide();
});

function mail_submit(){

	if ($("#mail_mail").val().length < 1 || $("#mail_topic").val().length < 1 || $("#mail_message").val().length < 1) {
	    $("#mail_error").show();
	    $.fancybox.resize();
	    return false;
	}
        
	return false;
}
