Не гони. Все меняется.
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js"></script>
<script type="text/JavaScript">
function adjustStyle() {
var cla = 'b',
width = parseInt($(window).width());
if(width < 640) cla = 'xs';
else if(width >= 460 && width < 690) cla = 's';
else if(width >= 690 && width < 963) cla = '';
else if(width >= 963 && width < 1680) cla = 'm';
$("#wsize").prop('className', cla + '_top_subcats clear');
alert("Имя класса изменено на "+$("#wsize").prop('className'));
}
$(function() {
adjustStyle();
$(window).resize(adjustStyle);
});
</script>
<div id="wsize" class=""></div>