shopster.namespace("rshop");

shopster.rshop.hoverOn = function(targetId, backgroundColor, borderColor)
{
	var target = $(targetId);
	target.style.backgroundColor = backgroundColor;
	target.style.border = '1px solid ' + borderColor;
	target.style.cursor = 'hand';
}

shopster.rshop.hoverOff = function(targetId)
{
	var target = $(targetId);
	target.style.backgroundColor = '#FFFFFF';
	target.style.borderColor = '#FFFFFF';
	target.style.cursor = 'auto';
}

shopster.rshop.setFocus = function(targetId)
{
	var target = $(targetId);
	if (target != null) {
		$(targetId).focus();
	}
}
