function dodajPosition (url)
{
	var r = /position=(\d+)/; 
	var match = r.exec(parent.document.URL);
	if (match) {
		var position = match[1];
		nowyURL = url + "&position=" + position;
		location.replace(nowyURL);
	}
}


(function($) { 
	$(function() {
		var r = /position=(\d+)/; 
		var match = r.exec(parent.document.URL);
		if (match) {
			var position = match[1];
			
			$('a[href*=index.php][href*=option][href*=com_content][href*=article]:has(img)').click(function() {
				$(this).attr('href', $(this).attr('href')+'&position='+position);
			});
		}
	});
})(jQuery);

