$(document).ready(function() {
$('#articleTagsShortList').hide();
  $('a#articleTagsShortListLink').click(function() {
	$('#articleTagsShortList').slideToggle(1);
	$('#advertTagsShortList').slideToggle(1);
	document.getElementById('tagiHeader').style.backgroundImage = 'url(Layout/TagiArtykuly.gif)';
	return false;
  });
  
$('a#advertTagsShortListLink').click(function() {
	$('#advertTagsShortList').slideToggle(1);
	$('#articleTagsShortList').slideToggle(1);
	document.getElementById('tagiHeader').style.backgroundImage = 'url(Layout/TagiKatalog.gif)';
	return false;
  });
});