$(document).ready(function() {
						   
	menus_dec = function(){
		$('div.decored_menu div').each(function(el){
			var prnt = $(this).width();
			$(this).children('img.decor').width(prnt);
			if ($.browser.msie) 
				{	
					var ie6 = parseInt($.browser.version);
					if(ie6 == 6)
						{
							if($(this).children('img').hasClass('decor_ie6'))
								{
									$(this).children('img.decor_ie6').width(prnt);
								}
							else
								{
									$(this).append('<img class="decor_ie6" src="/igf_www/public/media/images/black.gif" alt="" />');
									$(this).children('img.decor_ie6').width(prnt);
								};
						}
					else
						{/*alert('This is not IE 6')*/}
				}
			else
				{
					/*alert('not IE')*/
				};
		});

		$('ul.menu_list li.selected').each(function(el){
			var width = $(this).width();
			$(this).children('img.sel_d').width(width);
			if ($.browser.msie && (parseInt($.browser.version) == 6))
			{
				$(this).append('<img class="sel_d_ie_6" src="/igf_www/public/media/images/black.gif" alt="" />');
				$(this).children('img.sel_d_ie_6').width(width);	
			};
		});
	};
	
	hearer_ie6_fix = function(){
		if ($.browser.msie && (parseInt($.browser.version) == 6))
		{
			$('h2.header_1').each(function(){
				var header_fix = $(this).height();
				$(this).children('img.header_1_decor').css({
					bottom: 'auto',
					top: header_fix - 25
				}).show();
			})
		};
	};
	
	$('td.scrmn a').hover(
		function(){
			$(this).parents('.header_1').children('img').show();
		},
		function(){
			$(this).parents('.header_1').children('img').hide();
		}
	);
	
	menus_dec();
	hearer_ie6_fix();

});



