$(document).ready(function() {
	$('#order').each(function() {
		$(this).addClass('js')
		$('input[type=text]', this).each(function() {
			if (this.value) $(this).css('background', '#fff')
			$(this).focus(function() {$(this).css('background', '#fff')})
			$(this).blur(function() { if (!this.value) $(this).css('background', 'transparent')})
		})
	})
	$('form').each(function() {
		var form = this
		$('select[name=section]', form).each(function() {
			$(this).change(function() {
				if ($(this).val() === '') location = form.action
				else form.submit()
			})
			$('input[type=submit]', form).hide()
		})
	})
	
	
	$('img.captcha').each(function() {
		this.onclick = function() { this.src = 'captcha.png'+'?'+(new Date()).getTime() }
		this.title = 'Кликните для получения нового изображения'
	})
})
