/*
OPACITY W ZDJÊCIACH KORZYSTA Z JQUERY
*/
$(document).ready(function () {
 
    
       
       var badBrowser = (/MSIE ((5\.5)|6)/.test(navigator.userAgent) && navigator.platform == "Win32");
       if (badBrowser) {

       }
       else {

	 

	 $('a > img').css('opacity', 1).hover(function(){
	     $(this).stop().animate({opacity: 0.7}, 300);

	   }, function(){
	     $(this).stop().animate({opacity: 1}, 300);

	   });
       }
  });


  $(document).ready(function () {
 
    
       
       var badBrowser = (/MSIE ((5\.5)|6)/.test(navigator.userAgent) && navigator.platform == "Win32");
       if (badBrowser) {

       }
       else {

	 

	 $('.tabela td').css('opacity', 1).hover(function(){
	     $(this).stop().animate({opacity: 0.3}, 300);

	   }, function(){
	     $(this).stop().animate({opacity: 1}, 300);

	   });
       }
  });