jQuery(document).ready(function () {
 setTimeout(function () {
	 $('#intro, #vacancies, #image').css('opacity', 0);
	 $('#intro, #vacancies, #image').css('display', 'block').animate({ opacity: 1 }, 600, 'linear', function() {
        if ($.browser.msie) {
            $('strong').removeAttr('filter');
            //alert('rahhhh!');
            }
        });
 }, 1000);
});