$(document).ready(function(){
	$('.products').mouseenter(function(){
		$(this).addClass('products_on');
	}).mouseleave(function(){
		$(this).removeClass('products_on');
	});
});
