var top_picture_bg;

$(document).ready(function(){

	$('.top-menu .td-margin').css('width', (100/$('.top-menu .td-margin').length)+'%');
	$('.top-menu .selected .level1-gray-line').css( 'width', $('.top-menu td.selected').width()+'px' );
	
	if (/MSIE (5\.5|6).+Win/.test(navigator.userAgent))	
	{
		$('.top-menu td[class!=td-margin]').hover(
			function(){
				$('.level2', this).show();
			},
			function(){
				$('.level2', this).hide();
			}
		);


		$('.top-menu li').hover(
			function(){
				$(this).css('backgroundColor', '#F93E15' );
				$('a', this).css('color', 'white' );
				$('span', this).css('color', 'white' );
			},
			function(){
				$(this).css('backgroundColor', 'transparent' );
				$('a', this).css('color', '#767676' );
				$('span', this).css('color', '#767676' );
			}
		);
	}
});