jQuery().ready(function(){
  if ((screen.width<=1280)) {
    jQuery('body').addClass('pozadi1280');
  }

  if ((screen.width>1280) && (screen.width<=1366)) {
    jQuery('body').addClass('pozadi1366');
  }

  if ((screen.width>1366) && (screen.width<=1600)) {
    jQuery('body').addClass('pozadi1600');
  }

  if ((screen.width>1600) && (screen.width<=1680)) {
    jQuery('body').addClass('pozadi1680');
  }

  if ((screen.width>1680)) {
   jQuery('body').addClass('pozadi1920');
  }
});

jQuery('#slide').cycle({
    fx:     'fade',
    timeout: 3500
});


