/*******************************************************************************

	CSS on Sails Framework
	Title: Balfurd
	Author: XHTMLized (http://www.xhtmlized.com/)
	Date: August 2011

*******************************************************************************/

$(document).ready(function() {

	var balfurd_JS = {
		
		init: function() {
			this.initContactForm();
		},
		
		initContactForm: function() {
			$(".contact input[type='text'], .contact textarea, .contact select").each(function () {
				$label = $("label[for='" + $(this).attr("id") + "']");
				$(this).val($label.text());				
				$(this).focus(function() {
					if ($(this).val() == $("label[for='" + $(this).attr("id") + "']").text()) {
						$(this).val("");
					}
				});
				$(this).blur(function () {
					if ($(this).val() == "") {
						$(this).val($("label[for='" + $(this).attr("id") + "']").text());
					}
				});
			})
		}
		
	}
	
	balfurd_JS.init();
	
});
