( function($) {

	$(document).ready(function() {
	
	$('#edit-search-block-form--2').val('Search This Site');
	$('#edit-search-block-form--2').focus(function () {
		if($(this).val() == 'Search This Site') {
			$(this).val('').addClass('filled');
		}
	});
	$('#edit-search-block-form--2').blur(function () {
		if($(this).val() == '') {
			$(this).val('Search This Site').removeClass('filled');
		}
	});	

	//---Add descriptive text on the Featured block

	if ($('.region-sidebar-first #block-views-blog-block-2 h2').length>0) {
		$('.region-sidebar-first #block-views-blog-block-2 h2').html($('.region-sidebar-first #block-views-blog-block-2 h2').html().replace('Featured','Featured <span class="featured-description">Press, Webinars, Medical News, Journals, and more...</span>'));
	};


	//---Here's some appended HTML

	$('#user-login-form .edit-submit').append('<a id="jquery-register" href="/user/register">Register Now</a>');
//	$('ul.action-links li').append('<span id="moderated-message"> All comments will be moderated and posted when approved.</span>');
	$('.page-type-forum .article-content').append('<h2 class="block-title comments">Comments</h2>');


	//--- Add some error style to the checkbox

	$('.form-checkbox.error').parent().parent().parent().addClass('error-checkbox');


	});


} ) ( jQuery );



