
$(document).ready(function() {

	$.ifixpng('/gfx/x.gif');
 	$('img[@src$=.png],div#tekst,div#blok2').ifixpng();

	$(".switch").hover( 
		function() {
			$(this).children("img").toggle();
		},
		function() {
			$(this).children("img").toggle();
		}
	);
	
});


