$(document).ready(function() {
	$( '#featured-products_block_center .ajax_block_product' ).mouseover( function( ) {
		$( this ).find( ".block_product_content" ).addClass( "block_product_content_hover" );
		$( this ).mouseout( function( ) {
			$( this ).find( ".block_product_content" ).removeClass( "block_product_content_hover" );
		});
	});
	$( '.subcategories_products .ajax_block_product' ).mouseover( function( ) {
		$( this ).find( ".block_product_content" ).addClass( "block_product_content_hover" );
		$( this ).mouseout( function( ) {
			$( this ).find( ".block_product_content" ).removeClass( "block_product_content_hover" );
		});
	});
});
