function searchButtonHover(button) {
	$('#' + button).hover(function() {
		$(this).attr('src', 'images/button_form_search_over.gif');
	}, function() {
		$(this).attr('src', 'images/button_form_search_off.gif');
	});
}

function continueButtonHover(button) {
	$('#' + button).hover(function() {
		$(this).attr('src', 'images/button_form_continue_over.gif');
	}, function() {
		$(this).attr('src', 'images/button_form_continue_off.gif');
	});
}

function applyButtonHover(button) {
	$('#' + button).hover(function() {
		$(this).attr('src', 'images/button_form_apply_off.gif');
	}, function() {
		$(this).attr('src', 'images/button_form_apply_over.gif');
	});
}

function checkoutButtonHover(button) {
	$('#' + button).hover(function() {
		$(this).attr('src', 'images/button_checkout_off.gif');
	}, function() {
		$(this).attr('src', 'images/button_checkout_over.gif');
	});
}

function updateButtonHover(button) {
	$('#' + button).hover(function() {
		$(this).attr('src', 'images/button_form_update_off.gif');
	}, function() {
		$(this).attr('src', 'images/button_form_update_over.gif');
	});
}