
$(document).ready( function() {
	/* search box handling */
	$('.search .text input#sq').focus( function() {
			if ( $(this).val() == '' ) {
				$(this).addClass( 'focused' );
			}
		}
	);
	$('.search .text input#sq').blur( function() {
			if ( $(this).val() == '' ) {
				$(this).removeClass( 'focused' );
			}
		}
	);

	/* date-range input box handling */
	$('input.date-range').focus( function() {
			if ( $(this).val() == '' ) {
				$(this).addClass( 'focused' );
			}
		}
	);
	$('input.date-range').blur( function() {
			if ( $(this).val() == '' ) {
				$(this).removeClass( 'focused' );
			}
		}
	);

});

