$(document).ready(function() {
	$(".but_green_expand").click(function() {
		$(this).closest('.product').find('.product_expand').slideToggle(500);
		return false;
	});
});
