function scrollbarWidth() {

	// Scrollbalken im Body ausschalten

	document.body.style.overflow = 'hidden';

	var width = document.body.clientWidth;

 

	// Scrollbalken

	document.body.style.overflow = 'scroll';

 

	width -= document.body.clientWidth;

 

	// Der IE im Standardmode

	if(!width) width = document.body.offsetWidth-document.body.clientWidth;

 

	// ursprüngliche Einstellungen wiederherstellen

	document.body.style.overflow = '';

 

	return width;

}

var scrollWidth = scrollbarWidth();


$('#jobs-Holder').hover(
  function () {
  	$('#jobs-Holder').stop(true, false);
	  $('#jobs-Holder').animate({
		left: ['0', 'easeOutBounce']
	  }, 600);
  }, 
  function () {
  	$('#jobs-Holder').stop(true, false);
	  $('#jobs-Holder').animate({
		left: ['-14', 'easeOutElastic']
	  }, 1500);
  }
);


$(document).ready(
	function() {
		
	
		
		setTimeout(
			function() 
			{
			    $('#jobs-Holder').animate({
					left: ['-14', 'easeOutElastic']
				  }, 1400);
			} 
		,1700);
	}


);


$('#facebook-Holder').hover(
  function () {
  	$('#facebook-Holder').stop(true, false);
	  $('#facebook-Holder').animate({
		left: ['0', 'easeOutBounce']
	  }, 600);
  }, 
  function () {
  	$('#facebook-Holder').stop(true, false);
	  $('#facebook-Holder').animate({
		left: ['-14', 'easeOutElastic']
	  }, 1500);
  }
);


$(document).ready(
	function() {
		setTimeout(
			function() 
			{
			    $('#facebook-Holder').animate({
					left: ['-14', 'easeOutElastic']
				  }, 1600);
			} 
		,1950);
	}


);



$('#twitter-Holder').hover(
  function () {
  	$('#twitter-Holder').stop(true, false);
	  $('#twitter-Holder').animate({
		left: ['0', 'easeOutBounce']
	  }, 600);
  }, 
  function () {
  	$('#twitter-Holder').stop(true, false);
	  $('#twitter-Holder').animate({
		left: ['-14', 'easeOutElastic']
	  }, 1500);
  }
);


$(document).ready(
	function() {
		setTimeout(
			function() 
			{
			    $('#twitter-Holder').animate({
					left: ['-14', 'easeOutElastic']
				  }, 1800);
			} 
		,2200);
	}


);



