	
		(function($) {
			$(document).ready(function() {
				$("input[type=text], input[type=password]").each(
					function() { $(this).css("width", $(this).attr('size') + '2px').addClass("ContlBox"); }
				);
				$('table.loca td:first-child, table.loca th:first-child').css('border-left','none');
				var rollover = {
					newimage: function(src) {
						return src.substring(0, src.search(/(\.[a-z]+)$/) ) + '_on' + src.match(/(\.[a-z]+)$/)[0];
					},
					oldimage: function(src) {
						return src.replace(/_on\./, '.');
					},
					init: function() {
						$(".roll").hover(
							function () { $(this).attr( 'src', rollover.newimage($(this).attr('src')) ); },
							function () { $(this).attr( 'src', rollover.oldimage($(this).attr('src')) ); }
						);
					}
				};
				rollover.init();
				
					var $overLay = $('#msg, #overLay');
					var $overLay1 = $('#msg1, #overLay1');
						$('.open').click(function() { $overLay.show() });
						$('.close').click(function() { $overLay.hide() });
						$('.open1').click(function() { $overLay1.show() });
						$('.close1').click(function() { $overLay1.hide() });

			});
		})(jQuery);
		

	function popV(n){

		$('#msg'+n).css({'display' : 'block'});
	}

	function closeV(n){

		$('#msg'+n).css({'display' : 'none'});
	}

