/*==========================================================================
*
*	Interactive Javascript Elements
*	____________________________________________________________
*
*	Client:		Beachfit
*	Date:		19th July 2010
*	Author:		Edge Marketing Solutions
*	Website:	www.beachfit.com.au
*	Version:	1.0
*
===========================================================================*/

	/*	Form Validation */
	
	$(document).ready(function () {
	    $("#enquiryForm").validate();
	    $(".lightbox").colorbox({width:"400", height:"350", iframe:true});
	});
	
	
	/*	Login Form Default Values */
	
	var active_color = '#666'; // Colour of user provided text
	var inactive_color = '#aaa'; // Colour of default text
	
	$(document).ready(function() {
	  	$("input.default_txt").css("color", inactive_color);
	  	var default_values = new Array();
	  	$("input.default_txt").focus(function() {
	    	if (!default_values[this.id]) {
	      		default_values[this.id] = this.value;
	    	}
	    	if (this.value == default_values[this.id]) {
	      		this.value = '';
	      		this.style.color = active_color;
	    	}
	    	$(this).blur(function() {
	      		if (this.value == '') {
	        		this.style.color = inactive_color;
	        		this.value = default_values[this.id];
	      		}
	    	});
	  	});
	});
