
    $(document).ready(function(){
          $('img.promo_l').mouseover(function() {
            var s1=this.src;
            var p=s1.indexOf('maxwidth=');
            var s2=s1.substring(0,p)+'maxwidth=400';
            s1=s1.substring(p);
            p=s1.indexOf('&');
            s2=s2+s1.substring(p);
            //this.src=s2;
            
            p=parseInt($(this).css('height'));
            
            
            //$(this).animate({height:2*p}, 'slow');
            //$(this).css({opacity:0.7});
            
            $(this).attr('src', s2);
            //$(this).stop();
            //$(this).animate({opacity:1}, 'slow');
            
          }).mouseout(function() {
            var s1=this.src;
            var p=s1.indexOf('maxwidth=');
            var s2=s1.substring(0,p)+'maxwidth=190';
            s1=s1.substring(p);
            p=s1.indexOf('&');
            s2=s2+s1.substring(p);
            
            
            
            $(this).attr('src', s2);
            
            p=parseInt($(this).css('height'));
            //$(this).stop();
            //$(this).animate({height: '100%'}, 100);
          });
          //----------------------------------------
          $('img.galery').mouseover(function() {
            var s1=this.src;
            var p=s1.indexOf('maxwidth=');
            var s2=s1.substring(0,p)+'maxwidth=300';
            s1=s1.substring(p);
            p=s1.indexOf('&');
            s2=s2+s1.substring(p);
            
            p=parseInt($(this).css('height'));
            
            $(this).attr('src', s2);
            
          }).mouseout(function() {
            var s1=this.src;
            var p=s1.indexOf('maxwidth=');
            var s2=s1.substring(0,p)+'maxwidth=120';
            s1=s1.substring(p);
            p=s1.indexOf('&');
            s2=s2+s1.substring(p);
            
            $(this).attr('src', s2);
            
            p=parseInt($(this).css('height'));

          });          
 
        });
        


////////////////////////////////////////////
function reklama(wlaczone){
//return;
  if(wlaczone){
    $(document).ready(function(){
      $('#id_reklama').css({
                  "width":"300px",
                  "height":"200px",
          "border":"1px solid #FFE",
          "display":"block",
          "background-color":"skyblue",
          "color":"#000",
          "padding":"5px",
          "margin":"0px",
          "text-align":"center",
          "position":"fixed",
          "z-index":"10",
          "top":"1px",
          "left":"1px",
          "font-size":"20px"
          });
          
      html_ramki='<div style="text-align:right;"><span id="id_zamknij" style="cursor:pointer; background-color:skyblue;padding:2px;border:1px solid #888">Zamknij</span></div><br>'+
               'Podaj swój <b>e-mail</b>, jeśli chcesz otrzymywać informacje o nowościach i promocjach.<br><br>'+
               '<form action="index.php" method="post">'+
         '<div>'+
         '<input id="retro_box_bottom_middle_input" type="text" size="20" name="email" style="height:18px;border-width:0px;font-size:16px; background-color:#FFE;"/>'+
         '&nbsp;&nbsp;<input id="retro_box_bottom_middle_bot" name="subsc" type="submit" value="" style="border:1px solid #400;"/>'+
         '</div>'+
         '</form>'+
         '';
         
         
    $('#id_reklama').html(html_ramki);                

                
    $('#id_zamknij').click(function(){
      $('#id_reklama').fadeOut('slow', function(){
            $('#id_reklama').css({
          "display":"none",
          "position":"fixed",
          "z-index":"-1",
          "top":"-1px"
          });
    });

      });           
                  
            
                

          
    var w_srodek = ($(window).width() - $('#id_reklama').width()) / 2;
      var h_srodek = ($(window).height() - $('#id_reklama').height()) / 2;
      
    $('#id_reklama').css({'left': w_srodek});
    //$('#id_reklama').offset({'left': w_srodek, 'top':1});
    $('#id_reklama').animate({'top': h_srodek}, 'slow');
    
    
      

  
  
    });
  }
  else{
    $(document).ready(function(){
      $('#id_reklama').css({
          "display":"none",
          "position":"fixed",
          "z-index":"-1",
          "top":"-1px"
          });
    });
  }
}
////////////////////////////////////////////


