﻿$(document).ready(function(){
	$("ul.special li a.li").click(function(){
		$(this).parent('li').toggleClass('active');
		var cl = $(this).parent('li').attr('class');
		if (cl == 'active')
			//location.href = location.href+'#lok';
			$(this).text( "scrollTop:" + this.scrollTop() );
		return false;
	});
});


