﻿
$(function() {	

	if($(".ban p.intro span.big").length > 1) {
		$('.introTxt').cycle({
			fx: 'fade',
			speed: 2000,
			timeout: 3000,
			pause:1 
		});
	}
	else {
		$(".ban p.intro span.big").first().css("display","block");
	}
	
	
    $('.slider').innerfade({
        speed: 2000,
        timeout: 3000,
        type: 'sequence',
        containerheight: '227px'
    });
	
    $("input.text").focus(function() {
        $(this).val("");
    }).blur(function() {
        if ($(this).val() == "") {
            $(this).val($(this)[0].defaultValue);
        }
    });

    $('.menuadvices a').tooltip({
		track: true,
		delay: 0,
		showURL: false,
		left: -360,
		top: -40,
		showBody: " ++ ",
		fade: 500
	});

	if($("ul.textInfo").text().length <= 75)
	    $("ul.textInfo").liScroll({ travelocity: 0.005 });
	else
	    $("ul.textInfo").liScroll({ travelocity: 0.020 });
	

});

