$(document).ready(function(){
    /*
     *  When DOM is loaded.
     */
	// нажатие на кнопку "заказать"
	$(".order").click(function(){
		window.open('/order/id:'+$(this).attr('data-id')+'/table:'+$(this).attr('data-table')+'/type:'+$(this).attr('data-type')+'/', 'order_window', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=800,height=800,left = 240,top = 100');
		return false;
	});
	$(".calc,#calc").click(function(){
	    $.fancybox({
		href : '/calc/',
		type : 'iframe',
		height : 300
	    })
	    return false;
	});
	$('#total').live('keyup change', function(){
	    var total = parseInt($(this).val());
	    if(total && total >= 10000) {
		$('#first').val(Math.round(total * 0.3));
	    }
	});
	
	$('#first').live('blur', function(){
	    var first = parseInt($(this).val());
	    var total = parseInt($('#total').val());
	    if(first < total) {
		$(this).val(Math.round(total * 0.3));
	    }
	});
});


