$("img[rel=swapImage],input[rel=swapImage]").hover(
	function () {
    	var imgUrl = $(this).attr("src");
		var ofterImgUrl = imgUrl.match(/(.*)\.png/);
		$(this).attr("src",ofterImgUrl[1]+"_on.png");
	},
	function () {
    	var imgUrl = $(this).attr("src");
		var ofterImgUrl = imgUrl.match(/(.*)_on\.png/);
		$(this).attr("src",ofterImgUrl[1]+".png");
	}
);
function selectInputText(inputId){
	document.getElementById(inputId).focus();
	document.getElementById(inputId).select();
}
