<link rel="StyleSheet" href="가로크기별 CSS파일명" type="text/css" id="resize_css">
<script>
function open_window()
{
var windowWidth = $( window ).width();
if(windowWidth < 790 )
{
alert("790 보다 작다");
}
else
{
alert("791 보다 크다");
}
}
$( window ).resize(function()
{
window.onload = open_window();
});
document.getElementById("resize_css").href = "가로크기별 CSS파일명";
</script>
<body onload='open_window()'>
...
</body>