$(document).ready(function() {
$('#opinie').hide(); 

$('.opin').click(function() {
$('#opinie').slideToggle('slow');
var $link = $(this);
    if ( $link.text() == "Wyświetl opinie klientów" ) {
      $link.text('Ukryj opinie klientów'); 
    //$('#index img').rotate(90);
    } else {
      $link.text('Wyświetl opinie klientów');
 //$('#index img').rotate(90);
    }

});



});

$(document).ready(function() {
var tag = $('#foto a')[0];
if (tag  == undefined) { $('#oferta').hide();}
});


