﻿var linkGroups = ["footer"];

/*$.fn.cycle.defaults.speed = 900;
$.fn.cycle.defaults.timeout = 6000;*/

$(document).ready(function() {
    $("#toolTip").hide();

    $("#footer .onlinep").hover(
		function() { $("#toolTip").fadeIn("fast"); },
		function() { $("#toolTip").fadeOut("fast"); }
	);

    if ($('#fade1').length) { // if exist
        $('#fade1').cycle({
            fx: 'fade',
            speed: 2500,
            timeout: 2000
        });
    };
    if ($('#fade2').length) { // if exist
        $('#fade2').cycle({
            fx: 'fade',
            speed: 2500,
            timeout: 2500
        });
    };
    if ($('#fade3').length) { // if exist
        $('#fade3').cycle({
            fx: 'fade',
            speed: 2500,
            timeout: 2000
        });
    };

    /* FancyBox */
    if ($('.imgFancy').length) { // if exist
        $(".imgFancy").fancybox({
            //'hideOnContentClick': false,
            /*'zoomOpacity': true,
            'zoomSpeedIn': 600,
            'zoomSpeedOut': 500,
            'overlayShow': true,
            'easingIn': 'easeOutBack',
            'easingOut': 'easeInBack'*/
        });
    };
});