$(function() {
	l = document.location.toString().toLowerCase();
	$('#leftNav a').each(function() {
		/*console.debug(this.href);*/
		if(this.href.toLowerCase() == l) {
			$(this).parents('li').addClass('active');
			$(this).addClass('bold');
			}
		});
	$('#leftNav > li.active').height('auto');
	
		$("#myVectoneLogin").find("a:first").append('<span><img class="arrowD" src="/img-web/common/arrow_purpleD.gif" /></span>');
		$("#myVectoneLogin").click(function() {
			$("#MyVectoneLoginCont").slideToggle(300);
		});
		
	var zIndexNumber = 1000;
	$('div').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});
	
});
	
