
jQuery(function($){

$('.cart .quote-checkout').click(function(){
	var href = $(this).find('a').first().attr('href');
	window.location = href;
});


});

