function showText(index) {	
	var groups = []
	groups['about'] = {title:'About ITIS Group', tekst:"Since 2007, ITIS Group has been providing web development, software development and information technology solutions to companies around the globe.<br /><br />We combine our experience with our clients' technical requirements to deliver the best innovative solutions. We help companies plan, implement, and improve both their internet presence and their day-to-day business processes."}
	groups['contact'] = {title:'Contact', tekst:'<strong>ITIS Group</strong><br />Al. Jerozolimskie 162,<br/>02-342 Warsaw Poland<br /><br />tel. +48 22 501 66 20<br />fax +48 22 501 66 25<br /><a href="mailto:info@itis-group.com">info@itis-group.com</a>'}

	$('#infoText #title').html(groups[index].title);	
	$('#infoText #text').html(groups[index].tekst);

	return false;
}


$(document).ready(function() {
   $('#links #about').click(function() {
      $(this).parent().find('a').each(function() {$(this).removeClass('active')});
      $(this).addClass('active');
      showText('about');
   });
   $('#links #contact').click(function() {
      $(this).parent().find('a').each(function() {$(this).removeClass('active')});
      $(this).addClass('active');
      showText('contact');
   });
});
