function strToNum($string) {
	return $string.replace(/[^\d\.]/g, '');
}

function showWorking() {
	return '<img src="http://www.intrafin.be/images/working.gif" alt="Working" /> Working...';
}
//=========================================================== product images on hover ================================================================
$(document).ready(function() {
	$('.hoverImage').mouseenter(function() {
		prodId = $(this).attr('id');
		$(this).prepend('<div id="prodImg-' + prodId + '" class="hoverImageImg" style="margin: 0 0 0 -160px;"><div style="display: table; #position: relative; overflow: hidden; height: 135px; width: 135px;"><div style="display: table-cell; #position: absolute; #top: 50%; vertical-align: middle;"><div style="display: block; #position: relative; #top: -50%;"><img src="http://www.intrafin.be/image.php?' + prodId + ',125" /></div></div></div>');
	}).mouseleave(function() {
		prodId = $(this).attr('id');
		$('#prodImg-' + prodId).remove();
	});
});
//=========================================================== product images on hover ================================================================

//=========================================================== ajax shopping ===========================================================================
$(document).ready(function() {
	$('.addToCart').click(function() {
		prodId = $(this).attr('id').substring(3);
		prodUnit = $('#PUNIT-' + prodId).val();
		prodAmt = $('#PAMT-' + prodId).val();
		//alert(prodId + ' --- ' + prodUnit + ' --- ' + prodAmt);
		
		$(this).parent().append('<div id="SHOPRESULT-' + prodId + '"></div>');
		$resultContainer = $('#SHOPRESULT-' + prodId);
		
		$resultContainer.html(showWorking());
		
		//send the data to the
		$.post('http://www.intrafin.be/ajax_addtocart.php', {'action': 'addcart', 'pid': prodId, 'punit': prodUnit, 'pamt': prodAmt}, function(data) {
			//$container.html(data);
			$resultContainer.html(data);
		}, "html");
		
		return false;
	});
});
//=========================================================== ajax shopping ===========================================================================