(function ($) {
var self = mm.parts = mm.extend({
	
	init: function () {
		this.products();
	},
	
/* ===============================	 */
	
	products: function () {
		var target = $('.parts-products');

		if (!target.length)
			return;
		
		var items = target.find('.item');
		var items_l = target.find('.item_l');
		
		$(items).click(function(){
			location.href = $(this).find('a:first').attr('href');
		});
		
		$(items_l).click(function(){
			location.href = $(this).find('a:first').attr('href');
		});
		
		items.hover(
			function(){
				$(this).css({backgroundPosition: '-142px 0px'});
				$(this).find('.name').css({color: '#ff8c2f'});
			},
			function(){
				$(this).css({backgroundPosition: '0px 0px'});
				$(this).find('.name').css({color: '#8cc63f'});
			}
		);
		items_l.hover(
			function(){
				$(this).css({backgroundPosition: '-292px 0px'});
				$(this).find('.name').css({color: '#ff8c2f'});
			},
			function(){
				$(this).css({backgroundPosition: '0px 0px'});
				$(this).find('.name').css({color: '#8cc63f'});
			}
		);
	}
});

/* ===============================	 */

$(function () {
	mm.parts.init();
});
})(jQuery);

/* ===============================	 */
