var startpage = new function() {
	this.fetching		= false;
	
	this.run = function() {
	
	}

	/**
	 * @param int id ID linka na liscie (1, 2 lub 3)
	 * @param object elem Element linka, ktory zostal klikniety
	 */	
	this.showTop4 = function(elem) {
		_ids = $(elem).attr('id').match(/_([0-9]+)_([0-9+])_link/);

		top4container 	= 't4_'+_ids[1];
		selected 		= top4container+'_'+_ids[2];

		for (var i=1; i<7; i++) {
			$('#'+top4container+'_'+i).hide();
			$('#'+top4container+'_'+i+'_tab').addClass('inactive').removeClass('active');			
		}
		$('#'+selected).show();
		$('#'+selected+'_tab').addClass('active').removeClass('inactive');
	}
}

$(document).ready(function() {
	startpage.run();
});