jQuery(document).ready(function () {
 setTimeout(function () {
	 $('#intro, #vacancies, #image, #outer').css('opacity', 0);
	 $('#intro, #vacancies, #image, #outer').css('display', 'block').animate({ opacity: 1 }, 600);
 }, 1000);
 
 //open in new window
    $("a[rel='external']").click(function(e) {
        e.preventDefault();
        window.open($(this).attr("href"));
    })
 
});