$(document).ready(function() {
	$('input:text, input:password, textarea').focus(function() {
		// Input Focus
		$(this).removeClass('textinput').addClass('textinputhover');

	}).blur(function() {
		// Input Blur
		$(this).removeClass('textinputhover').addClass('textinput');
	});
});

// Search Default Text
$(document).ready(function() {
	// Default Text
	var product_search_text = 'Keywords...';
		
	$('#blogSearch #searchKeywords').focus(function() {
		if ($(this).val() == product_search_text) $(this).val('');
	}).blur(function() {
		if ($(this).val() == '') $(this).val(product_search_text);
	}).blur();
});


// Login Default Text
$(document).ready(function() {
	// Default Text
	var username_text = 'Username';
	var password_text = 'Password';
		
	$('#loginForm #username').focus(function() {
		if ($(this).val() == username_text) $(this).val('');
	}).blur(function() {
		if ($(this).val() == '') $(this).val(username_text);
	}).blur();
	
	$('#loginForm #password').focus(function() {
		if ($(this).val() == password_text) $(this).val('');
	}).blur(function() {
		if ($(this).val() == '') $(this).val(password_text);
	}).blur();
});