jQuery(document).ready(function() { windowresize(); });
$(window).resize(function() { windowresize(); });

function windowresize()
{
	var pageWidth = $(window).width();
	var newWidth;
	var posLeft;
	var imgLeft;
  
	if(pageWidth < 980) 
		{
			newWidth=980;
			posLeft=0;
			imgLeft=-85;
		}
	else if(pageWidth < 1149)
		{
			newWidth=pageWidth;
			var dif = (pageWidth - 980) / 2;
			posLeft = parseInt(-dif);
			imgLeft = -85 - posLeft;
		}
	else
		{
			newWidth = 1149;
			posLeft = -85;
			imgLeft = 0;
		}

	$('#wrapper-slider').css('max-width', newWidth+'px')
	$('#wrapper-slider').css('left', posLeft+'px')
	$('#window > li > a ').css('left', imgLeft+'px')
	$('#window > li > a ').css('position', 'relative')
	$('#window > li > a ').css('display', 'block')
}
