

$(document).ready(function() {
	jQuery(".img-thumb-small").thumbPopup({
		imgSmallFlag: "mod=5",
		imgLargeFlag: "mod=0"
	});
});

function focusSearch() {
	jQuery('input[name=login_box_login]').focus();
	return true;
}

function parseFloatToPrice(price) {
	//return parseFloat(price).toFixed(2).replace('.',',');
	return jQuery().number_format(price, {
   numberOfDecimals:2,
   decimalSeparator: ',',
   thousandSeparator: ' '
	 });
}

