$('#header .bottom_detail .search_section .input_bg .default-value').each(function() {
    var default_value = this.value;
    $(this).css('color', '#65696e'); // this could be in the style sheet instead
    $(this).css('font-style', 'italic');
	$(this).css('font-weight', 'normal');
	$(this).css('letter-spacing', '2px');
	$(this).focus(function() {
        if(this.value == default_value) {
            this.value = '';
            $(this).css('color', '#abc2ed');
			$(this).css('font-style', 'normal');
			$(this).css('font-weight', 'normal');
			$(this).css('letter-spacing', 'normal');
        }
    });
    $(this).blur(function() {
        if(this.value == '') {
            $(this).css('color', '#65696e');
			$(this).css('font-style', 'italic');
			$(this).css('font-weight', 'normal');
			$(this).css('letter-spacing', '2px');
            this.value = default_value;
        }
    });
});
