$(document).ready(function() {


	$('.doorlist_basket .remove').click(function(evt){
		evt.preventDefault();
		$.post('')
		var	parent = $(this).parent().parent();
		$.post('Koksluckor/ajax.php',{'orderRowId':$(this).attr('id')},function(data){
		 	$(parent).hide(250,function(){$(this).remove();});
		 });

	})

	$('#continuelater_open').click(function(event) {
		 event.preventDefault();

		 $('#calc_overlay').css({
			  'width': $(document).width(),
			  'height': $(document).height()
		 });

		 $('#calc_overlay').show();

	});

	$('#continuelaterbutton').click(function(evt) {
		evt.preventDefault();
		$.post('Koksluckor/ajax.php', {
				'cl_post':'true',
				'continue_firstname':$('#continue_firstname').val(),
				'continue_continuelater':$('#continue_continuelater').val(),
				'continue_lastname':$('#continue_lastname').val()
			},function(data) {
				alert(data);
			}
		);
		return false;
	});

$('#calc_overlay_hide a').click(function(event) {
	 event.preventDefault();
	 $('#calc_overlay').hide();
});

$('#calc_overlay_hide').click(function(event) {
	 event.preventDefault();
	 $('#calc_overlay').hide();
});


$('select#referer').change(function() {
	$('.user-message textarea').focus();
});

});

