// JavaScript Document

// document is ready
$(function()
{

	// input focus
	$('.input_text,.input_area').focus(function () {
		$(this).addClass('ui-state-highlight');
		if (this.value == this.getAttribute('defaultvalue'))
		{
			this.value = '';
		}
	} );
	// input blug
	$('.input_text,.input_area').blur(function () {
		$(this).removeClass('ui-state-highlight');
		if (this.value == '' && this.getAttribute('defaultvalue'))
		{
			this.value = this.getAttribute('defaultvalue');
		}
	} );
	// default values
	$('input[defaultvalue]').each(function() { 
		this.value = this.getAttribute('defaultvalue');
	} );
	// validation
	var validator = $('form').validate();
	$('.cancel,.reset').click(function () {
		validator.resetForm();
		return false;
	} );
	// css sprites2
	$('#global').sprites();

} );
