$(document).ready(function() {



function imageresize() {
	var contentwidth = $('#wrapper').width();

	if ((contentwidth) > '1680') {
		window.location="1680.html";
	}
	else {
		if ((contentwidth) > '1440') {
			window.location="1440.html";
		}
		else {
			if ((contentwidth) > '1280') {
				window.location="1280.html";
			}
			else {
				if ((contentwidth) > '1024') {
					window.location="1024.html";
				}
				else {
					window.location="800.html";

				}
			}
		}
	}

}



$(window).bind("resize", function(){
imageresize();
});


imageresize();//Triggers when document first loads





});

