function addproduct() {
	tb_show('',
		'shopping_cart/ajoute_ref.php?keepThis=true&height=120&width=616&ajax=1&ref_oclio='
				+ $('#ref_oclio').val() + '&cart_quantity='+ $('#cart_quantity').val());

	$.ajax({
		type: 'POST',
		url: 'shopping_cart/ajoute_ref.php',
		data: "ajax=1&ref_oclio="+ $('#ref_oclio').val()
			+ "&cart_quantity="+ $('#cart_quantity').val(),
		success: function(){
			$('#o-box-shopping-cart').load('includes/boxes/shopping_cart.php?ajax=1');
		}
	});
	return false;
};
$(document).ready(function(){
	$('#ref_oclio').change(function() {
		var ref = $(this).val().split('-');
		window.location = 'ref-r-' + ref[2] + '.html';
	})
	$('#bouton_add_to_cart').click(function(){
		addproduct();
		return false;
	});
});
