$(document).ready(function(){

	if(navigator.userAgent.toLowerCase().indexOf("mobil") != -1)
		return;
	setTimeout(function() {
		$("#HG_links").animate(
			{width: $.browser.msie ? '18.2%' : '18.1%'},
			{
				duration: 1000,
				easing: 'backout',
				complete: function(){
				}
			}
		);
		$("#HG_rechts").animate(
			{width: $.browser.msie ? '4.6%' : '4.1%'},
			{
				duration: 1000,
				easing: 'backout',
				complete: function(){
				}
			}
		);
	}, 500);
});

