$(document).ready(function(){
	//$('body').remove('#RedirectFormDiv');
	var offset = $('a.active').offset();
	$('body').append('<div class="active-left-bar" style="position:absolute;left:0;top:'+offset.top+'px;z-index:1;width:'+offset.left+'px;height:'+$('a.active').parent('li').height()+'px;background:#191306;"><!--empty div--></div>');
	
	$('#l2-nav li a').hover(function(){
		$('.left-bar').remove();
		var offset = $(this).offset();
		$('body').append('<div class="left-bar" style="position:absolute;left:0;top:'+offset.top+'px;z-index:0;width:'+offset.left+'px;height:'+$(this).parent('li').height()+'px;background:#191306;"><!--empty div--></div>');
	},
	function(){
		$('.left-bar').remove();
	})
	
	$(window).resize(function() {
		$('.active-left-bar').remove();
		//$('.active-left-bar').width(offset.left);
		var offset = $('a.active').offset();
		$('body').append('<div class="active-left-bar" style="position:absolute;left:0;top:'+offset.top+'px;z-index:0;width:'+offset.left+'px;height:'+$('a.active').parent('li').height()+'px;background:#191306;"><!--empty div--></div>');
	})
})