$(document).ready(function() {
	$('#price-enquiry_submit').validate();
	
	
	$('.remove').click(function(event) {
		$(this).parent('div').parent('li').fadeOut(200, function() {
			$(this).remove();
			
			var ids = '';
			$('#content1 li').each(function(index) {
				var theid = $(this).attr('id').split('-')[1];
				ids = ids + ',' + theid;
			});
			$.post('/pages/components/update_session.php', {'ids': ids}, function(data, textStatus, xhr) {
			});
			
		});
		return false;
	});
	
	
	$('#price-enquiry_submit').submit(function(event) {
		if($('#price-enquiry_submit').valid()) {
			$.post('/send_enquiry.php', 
				{
					name: $('#name').val(),
					email: $('#email').val(),
					company_name: $('#company_name').val(),
					phone: $('#phone').val(),
					postcode: $('#postcode').val(),
					ids: $('#ids').val(),
					message: $('#message').val()
				}, 
				function(data, textStatus, xhr) {
					$('#done').slideDown(200);
			});
		}
		return false;
	});
});

