function linkclic(s)
{
	$("a["+s+"]").parent().show();
	$("a["+s+"]").show();
	var top = $(s).css('top');
			if (top!=='auto' && top!=undefined)
			{
				
				top = String(top.substr(0, top.length - 2));
				//alert(top);
				$().scrollTop(top);
			}
			else
			{
				$.scrollTo(s);
			}
//	return false;		
}

$(document).ready(function(){
 if(String(window.location).indexOf("openFAQ=")!=-1)
		{
			var len = String(window.location).length;
			var pos = String(window.location).indexOf("openFAQ=");
			var anhor = '#faqa'+String(window.location).substr(pos+8, len - pos - 8);
			var top = $(anhor).css('top');
			if (top!=='auto' && top!=undefined)
			{
				
				top = String(top.substr(0, top.length - 2));
				//alert(top);
				$().scrollTop(top);
			}
			else
			{
				$.scrollTo(anhor);
			}
			$(anhor).next(".help_text").slideToggle("fast");
			//$(anhor).next(".help_text").slideToggle("fast").siblings(".help_text:visible").slideUp("fast");
		}
			
			   
if(String(window.location).indexOf("#")!=-1)
{
	var len = String(window.location).length;
	var pos = String(window.location).indexOf("#");
	var anhor = String(window.location).substr(pos, len - pos);

	$(anhor).next(".help_text").toggle();
	var top = $(anhor).css('top');
			if (top!='auto' && top!=undefined)
			{
				
				top = String(top.substr(0, top.length - 2));
				//alert(top);
				$().scrollTop(top);
			}
			else
			{
				$.scrollTo(anhor);
			}

}
$('.help_text a').click(function(){
//	alert($($(this).attr('href')).attr('id'));
	$($(this).attr('href')).next(".help_text").slideToggle("fast");});
$(".luc").click(function(){
		$(this).next(".help_text").slideToggle("fast");
	//	return false;
 });
});

