jQuery(document).ready(function() {

    jQuery('#search-top input.text').click(function () { if (this.value == 'Search...') this.value = ''; });
    jQuery('#search-top input.text').blur(function () { if (this.value == '') this.value = 'Search...'; });
	
	var el = jQuery('.widget_archive select option:first-child');
	if (el.size() > 0) {
		el.html('Please Select Date');
	}

	/*var select = jQuery('.widget_archive select');
	var options = select.attr('options');
	var counter = 0;
	for (var i = options.length - 1; i >= 1; i--) {
		var tempOption = options[i];
		options[i] = new Option('void', 'void');
		options[i + 1] = tempOption;
		console.log(options.length);
	}
	options[1] = new Option('All', 'http://blogs.lexisnexis.com/healthcare/archive/');*/
	
	jQuery('p.comment-form-comment label').html('Comment <span class="required">*</span>');
	
});
