JQuery : Layout Switcher

script.js

$(document).ready(function(){
stylesheetToggle();
$(window).resize(stylesheetToggle);
});

function stylesheetToggle() {
if ($('body').width() > 900) {
$('<link rel= "stylesheet" href="wide.css" type="text/css" />')
.appendTo('head');
} else {
$('link[href="wide.css"]').remove();
}
}
});

-----------------------------------------

wide.css

body #container {
width: 850px;
}

body #container p {
width: 650px;
}

body #header {
background-image: url('../../css/images/header-corners-wide.png');
}

body #celebs table {
width: 650px;
margin-left: 5px;
}