$(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 or product code';
		
	$('#productSearch #Name').focus(function() {
		if ($(this).val() == product_search_text) $(this).val('');
	}).blur(function() {
		if ($(this).val() == '') $(this).val(product_search_text);
	}).blur();
});


// Subscribe Default Text
$(document).ready(function() {
	// Default Text
	var product_search_text = 'Email Address';
		
	$('#subscribe #Email').focus(function() {
		if ($(this).val() == product_search_text) $(this).val('');
	}).blur(function() {
		if ($(this).val() == '') $(this).val(product_search_text);
	}).blur();
});
