$(document).ready(function(){
    // flash msg
    var d = $('.flash').size();
    $('body').mousemove(function(){
        $('.flash').each(function() {
            var delay = d-- * 1000;
            $(this).click(function() {
                $(this).hide();
            });
            $(this).delay(delay).fadeOut('slow');
        });
    });

    // boxy
    if (location.href != 'http://www.dnarecruitment.cz/' && location.href != 'http://dnarecruitment.cz/' &&
	 location.href != 'http://www.dnarecruitment.cz/sk/' && location.href != 'http://dnarecruitment.cz/sk/' &&
	 location.href != 'http://www.dnarecruitment.cz/en/' && location.href != 'http://dnarecruitment.cz/en/') {
        // skryti
        $('#columns').css('height', '35px');
        $('.first-c div').hide();
        $('.first-c div').css('position', 'absolute');
        $('#c1vice').css('top', '253px');
        $('.second-c div').hide();
        $('.second-c div').css('position', 'absolute');
        $('#c2vice').css('top', '253px');
        $('.third-c div').hide();
        $('.third-c div').css('position', 'absolute');
        $('#c3vice').css('top', '253px');
        // funkce
        $('.first-c').hover(function() {
            $('.first-c div').stop(true, true).delay(200).slideDown();
        }, function() {
            $('.first-c div').stop(true, true).delay(200).slideUp();
        });
        $('.second-c').hover(function() {
            $('.second-c div').stop(true, true).delay(200).slideDown();
        }, function() {
            $('.second-c div').stop(true, true).delay(200).slideUp();
        });
        $('.third-c').hover(function() {
            $('.third-c div').stop(true, true).delay(200).slideDown();
        }, function() {
            $('.third-c div').stop(true, true).delay(200).slideUp();
        });
    }
});

