$(document).ready(function() {
	

	
	// pngFix
	//$("#container").pngFixBg(); 
	//$("#menu").pngFix();
	
	$('td.sub').hover(function(){
		$('ul', this).show();
	}, function(){
		$('ul', this).hide();
	});
	
	$('.catalog a').click(function(){
		
		if ( $('ul.l1',$(this).parent()).size() == 1 )
		{
			$('ul.l1',$(this).parent()).slideToggle();
			return false;
		}
		
	});
	
	$('.catalog ul.l1 li').hover(function(){
		//alert('1');
		$(this).css('background', '#faeee3');
	}, function(){
		$(this).css('background', 'none');
	});
	
	$('select.shop-sel').change(function(){
		
		if ( $(this).val() == 'none' )
		{
			$(this).css('color', '#cccccc');
		}
		else
		{
			$(this).css('color', '#000000');
		}
		
	}).change();
	
	/*$('table.cat td').hover(function(){
		//alert('1');
		$(this).css('background', 'url("images/item-bg.jpg") no-repeat');
	}, function(){
		$(this).css('background', 'none');
	});*/
	
});


