$(function(){
	$('.footer_navigation li').each(function(i, el){
		var elWidth = $(el).width();
		var elPadding_L = $(el).children('a').css('padding-left')
		var elPadding_R = $(el).children('a').css('padding-right')
		var elNewWidth = parseInt(elWidth) - parseInt(elPadding_L)+1 - parseInt(elPadding_R);
		$('.sub').css('margin-left',$('.footer_navigation li:first').position().left);
		$($('.sub li.fl_left').get(i)).css({'width' : elNewWidth});
	});

	$('.navigation > li').mouseenter(function(){
		$('.dropDownMenu').css('left',$(this).position().left);
		$(this).children('a').addClass('active');
		$(this).children('.dropDownMenu').show();
	}).mouseleave(function(){
		$(this).children('a').removeClass('active');
		$(this).children('.dropDownMenu').hide();
	});
});
