$(document).ready(function() {
	$('input.color').ralColorPicker();
	setInterval('refreshTab()',100);
	$('.add-order').click(function () {
		addNewOrder(hash);
		return false;
		
	})
});





function addNewOrder(type) {
	if (!type) type='list';
	if (type=='list') {
		tpl=$('#tab-'+type+' .template:first').clone();
		
		$('input',tpl).val('');
		tpl.addClass('clone');
		tpl.appendTo($('#tab-'+type+' .template')[0].parentNode);
	} else {
		if (confirm('Добавить в заявку изделия из пластика вы можете на странице каталога. Перейти?')) {
			document.location.href='/production/';
		} else {
			return false;
		}
		
	}
}

function add(obj) {
	$.post('/clients/order/add.php',obj);
}
