/*==========================  G L O B A L   V A R I A B L E S  ==================================*/
	var actualY = new Number();		// przechowuje Y myszy.	
	var thumbsArray = new Array();

/*================================  D O C U M E N T  ========================================*/	
$(document).ready( function() {

	$("div.news_arrow").click( function() { 
			if( $(this).prev().is(":hidden") ) { 
				$(this).prev().show("fast"); 
				$(this).html(" &laquo; "); 
				
			}
			else { 
				$(this).prev().hide("fast"); 
				$(this).html(" &raquo; "); 
			}
			
	});
	
	$("div[class*='schemat']").hide();
	
	$("h3.schemat").click( function () {
		$(this).next().fadeIn();
	});
	
	$("img[alt='kolektor']").click( function () {
		$(this).fadeOut();
	});
	
	$("span.mail").each( function(i) { 
		var mail = $(this).html().replace(':','@');
		var text = '<a href="mailto:' + mail + '">' + mail + '</a>'
		$(this).html(text);
	});
	
	$("span.mail2").each( function(i) { 
		var mail = $(this).html().replace(':','@');
		var text = '<a href="mailto:' + mail + '">' + mail + '</a>'
		$(this).html(text);
	});
	
});


