﻿
$(document).ready(function ()
{
	$('#netkonyvtar_temakorok div').css({'display':'none'});
	$(function(){
		var path = location.pathname.substring(1);
		if ( path )
		{
			$('#netkonyvtar_temakorok a[@href$="' + path + '"]').parent().css({'display':'block'});
			$('#netkonyvtar_temakorok a[@href$="' + path + '"] + div').css({'display':'block', 'margin-left':'10px'});
			$('#netkonyvtar_temakorok a[@href$="' + path + '"]').after('<img src="/netk/pointer.gif" align="absmiddle" style="margin-left:5px">');
		}
	});

});

