$(document).ready(function () {
    $('#carousel').cycle({
        fx: 'fade',
        speed: 1000,
        timeout: 10000,
        pager: '#jcarousel-control'
    });
    $('.carousel').hover(function () {
        $('.jcarousel-toggle').fadeIn();
    },
	function () {
	    $('.jcarousel-toggle').fadeOut();
	});
    $('.jcarousel-toggle').toggle(function () {
        $('#carousel').cycle('pause');
        $(this).removeClass('pause');
        $(this).addClass('play');
    },
	function () {
	    $('#carousel').cycle('resume');
	    $(this).removeClass('play');
	    $(this).addClass('pause');
	});
    $('.lightbox-link').colorbox({
        inline: true,
        href: $(this).attr('href'),
        close: 'ST&Auml;NG'

    });
    $('.txtSearchText').labelify();
    $('.serp-category-list li').click(function () {
        var className = $(this).children('a').attr('id');
        $('.serp-list-item').hide();
        $('.' + className).show();
        $('.serp-category-list li').attr('class', '');
        $(this).attr('class', 'active');
    });

    if ($('.protection').length > 0 && $('.form').length > 0) {
        var rowsInForm = $('.form .row').length;
        $('.protection').appendTo('.form');
        $('.form .row:nth-child(' + rowsInForm + ')').appendTo('.form');
    }
});

