var width = 1024;
if(document.body.clientWidth < width) {
//и тут что хотите то и делайте
}
$(function(){
$('ul.nav li a').each(function(){
if(document.location.pathname == $(this).attr('href')){
$(this).parent().addClass('active');
}
});
});