$(document).ready(function(){

	fix();

});

$(window).resize(function(){

	fix();

});

function fix() {

	var max = 1400;

	var w = $(window).width();
	if (w > max) {
		w = max;
	}
	$(".slideshow").width(w);
	$(".slideshow").css('margin-left',($(window).width()/2) - (w/2));

}
