
if($.browser.msie && $.browser.version.substr(0,1) == 6) {
	DD_belatedPNG.fix('#logo a, .btn-price, #navigation ul li a:hover, #navigation ul li a.hover, #navigation ul li.active a, #navigation ul li span, #navigation');
}

$(function(){
	$('#navigation ul li').each(function (index) {
		$(this).find('span').css({left: ($(this).width() - 30)/2});
	});
	
	$('#navigation > .shell > ul > li').hover(function() {
		$(this).css({ 'z-index' : 100 });
		$(this).find('ul').show();
		$(this).find('a:eq(0)').addClass('hover');
	}, function() {
		$(this).css({ 'z-index' : 1 });
		$(this).find('ul').hide();
		$(this).find('a:eq(0)').removeClass('hover');
	});
});

