
$(document).ready(function() {
	// Kill bunk error screen for blank searches
	$('#keywords').each(function() {
	    var default_value = this.value;
	    $(this).focus(function() {
	        if(this.value == default_value) {
	            this.value = '';
	        }
	    });
	    $(this).blur(function() {
	        if(this.value == '') {
	            this.value = default_value;
	        }
	    });
	});


	//Testimonial Switcher
	$('#voice-switch a').click(function() {
		$(this).parent().addClass('active');
		$(this).parent().siblings().removeClass('active');
	
		var qut = $(this).attr('href');
		$(qut).fadeIn(1000).siblings('.quote').hide();		
	});




	//Quilt Popups

	$("a.popper").fancybox({
		'width':800,
		'type': 'inline',
		'titleShow':false,
		'showNavArrows':false
	});

	$('a.d-popper').fancybox({
		'width':800,
		'titleShow':false,
		'type': 'inline',
		'hideOnContentClick':false,
		'showNavArrows':false
	});


	$('.previous a').click(function(){
	  $.fancybox.prev();
	});	
	
	$('.next a').click(function(){
	  $.fancybox.next();
	});


});


















