$(document).ready(function(){
	var GB = {
		text_labels: function(){
			//to automatically erase text in a search field
			$('input[type=text], textarea').each(function(){
				var $input = $(this);
				if(!$input.attr('placeholder'))
					$input.attr('placeholder', this.value);
				$input.focus(function(){
					if(this.value == $input.attr('placeholder'))
					this.value = '';
					$input.addClass('focus');
				});
				$input.blur(function(){
					if(this.value == '')
					this.value = $input.attr('placeholder');
				$input.removeClass('focus'); 
				});
			});
		},
		close_overlay: function(){
			$('#contactOverlay, #overlay_container, #overlay').remove();
			return false
		}
	};
	
	GB.text_labels()						   
						   
						   
	$('div.practiceTitle').click(function(){
		
		if($(this).find(':nth-child(2)').hasClass('open')) {
			$(this).find(':nth-child(2)').removeClass('open');
			$(this).find(':nth-child(2)').addClass('closed');
			$(this).find(':nth-child(3)').animate({backgroundColor: '#49185b'}, 900);
			$(this).next().next().slideUp(1000);
		}
		else {
			$(this).find(':nth-child(2)').removeClass('closed');
			$(this).find(':nth-child(2)').addClass('open');
			$(this).find(':nth-child(3)').animate({backgroundColor: '#6aa752'}, 900);
			$(this).next().next().slideDown(1000);
		}
	});			
			   
						   

});
