jQuery.noConflict();
jQuery(document).ready(function(){
	
	//Shopping Cart
	jQuery(".shopcart tr:even").addClass('treven');
	jQuery(".shopcart tr").hover( function() {
		jQuery(this).find('td').addClass('hover');
	}, function() {
		jQuery(this).find('td').removeClass('hover');
	});
	// Table scripts
	jQuery(".prodtbl tr:nth-child(2+4n)").addClass('treven').next('.prodtbl tr').addClass('treven');
	
	jQuery(".prodtbl tr:odd").hover( function() {
		jQuery(this).find('td').addClass('hover');
		jQuery(this).next('.prodtbl tr').find('td').addClass('hover');
	}, function() {
		jQuery(this).find('td').removeClass('hover');
		jQuery(this).next('.prodtbl tr').find('td').removeClass('hover');
	});
	
	jQuery(".prodtbl tr:even").hover( function() {
		jQuery(this).find('td').addClass('hover');
		jQuery(this).prev('.prodtbl tr').find('td').addClass('hover');
	}, function() {
		jQuery(this).find('td').removeClass('hover');
		jQuery(this).prev('.prodtbl tr').find('td').removeClass('hover');
	});
	
	//Alphabet navigation
	jQuery('#myCat').listnav({
		noMatchText: 'Извините, на данный момент нет позиций для отображения',
		showCounts: true
	});

});
