$j(function() {
var resolution = screen.width;
var header = $j("#header");
var content = $j("#content");
   if (resolution <= 1024){
      header.css('background','url("/templates/webium_shablon/images/slider_top_1024.png") bottom center no-repeat');
           if (content){
               content.css('background','url("/templates/webium_shablon/images/slider_bottom_1024.png") center top no-repeat');
               }
   }
   if ((resolution > 1024) && (resolution <= 1152)){
       header.css('background','url("/templates/webium_shablon/images/slider_top_1152.png") bottom center no-repeat');
           if (content){
               content.css('background','url("/templates/webium_shablon/images/slider_bottom_1152.png") center top no-repeat');
           }
   }
   if ((resolution > 1152) && (resolution <= 1280)){
       header.css('background','url("/templates/webium_shablon/images/slider_top_1280.png") bottom center no-repeat');
           if (content){
               content.css('background','url("/templates/webium_shablon/images/slider_bottom_1280.png") center top no-repeat');
           }
   }
   if ((resolution > 1280) && (resolution <= 1366)){
       header.css('background','url("/templates/webium_shablon/images/slider_top_1366.png") bottom center no-repeat');
           if (content){
               content.css('background','url("/templates/webium_shablon/images/slider_bottom_1366.png") center top no-repeat');
           }
   }
   if ((resolution > 1366) && (resolution <= 1440)){
       header.css('background','url("/templates/webium_shablon/images/slider_top_1440.png") bottom center no-repeat');
           if (content){
               content.css('background','url("/templates/webium_shablon/images/slider_bottom_1440.png") center top no-repeat');
           }
   }
   if ((resolution > 1440) && (resolution <= 1680)){
        header.css('background','url("/templates/webium_shablon/images/slider_top_1680.png") bottom center no-repeat');
           if (content){
               content.css('background','url("/templates/webium_shablon/images/slider_bottom_1680.png") center top no-repeat');
           }
   }
   if (resolution > 1680){
        header.css('background','url("/templates/webium_shablon/images/slider_top_1680.png") bottom center no-repeat');
           if (content){
               content.css('background','url("/templates/webium_shablon/images/slider_bottom_1680.png") center top no-repeat');
           }
   }
});
