$(document).ready(function() {
   
   $("a.galeria").fancybox({'titlePosition':'over'});

   $('#main img').each(function(index) {
      if ($(this).attr('align')=="left")
         $(this).css({'margin-right':10,'margin-top':5,'margin-bottom':5});
      else if ($(this).attr('align')=="right")
         $(this).css({'margin-left':10,'margin-top':5,'margin-bottom':5});
   });
});


//==============================================================================
// obsługa newslettera

function _newsletterAdd() {
   $.ajax({
      type: "GET",
      url: "/newsletter/dodajAdres2/"+$('#newsletterEmail').val(),
      cache: false,
      success: function(msg){
         
         $('#newsletterResponse').html(msg);
         $('#newsletterEmail').attr('value','email');
      }
   });
}

function _newsletterRemove() {
   $.ajax({
      type: "GET",
      url: "/newsletter/usunAdres2/"+$('#newsletterEmail').val(),
      cache: false,
      success: function(msg){
         $('#newsletterResponse').html(msg);
         $('#newsletterEmail').attr('value','email');
      }
   });
}

