$(document).ready(function(){
	
	if ($.browser.msie && $.browser.version == 6) {	
		$('#logo img, #menu .item img, h2 img, img.png').ifixpng();
		object = $('.search').get(0);		
		if (typeof(object) !== 'undefined') object.style.filter ="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + $('base').attr('href') + "templates/images/bg_search.png', sizingMethod='crop')";
		object = $('#lang_ru .send .bgsub').get(0);
		if (typeof(object) !== 'undefined') object.style.filter ="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + $('base').attr('href') + "templates/images/bg_send_ru.png', sizingMethod='crop')";
		else {
			object = $('.send .bgsub').get(0);
			if (typeof(object) !== 'undefined') object.style.filter ="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + $('base').attr('href') + "templates/images/bg_send.png', sizingMethod='crop')";
		}
		
	} 
	
	$('#menu .item ul').css({
		//'visibility':'visible',
		'display':'none'
	});
	
	$('#menu .item ul').hover(function(){
						
		//$(this).show();						
	}, function(){
		
		//$(this).hide();	
	});
	
	$('#menu .item').hover(function(){	
		$(this).children('ul').show();						
	}, function(){
		
		$(this).children('ul').hide();	
	});
	
	$('#menu .item li').hover(function(){
				
		$(this).children('ul').show();						
	}, function(){
		
		$(this).children('ul').hide();
	});
	
	mq();
	
});

function mq() {
	$('#mq img').animate({
		'left':'-550px'				 
	},10000, function(){
		$(this).hide().css('left','520px').show();
		mq();
	});
	
}