
window.addEvent('load', function(){
	$$('.subscriber-use').forEach(function(item){
		// change action to login action
		item.removeEvents();
		item.setProperty('action', '/cgi-bin/WebObjects/TShop.woa/wa/PSUser/login.html');
		item.setProperty('method', 'GET');
		item.getElements('input').forEach(function(innerItem){
			if(innerItem.getProperty('name') == 'submitcontrol'){
				innerItem.setProperty('src',
					'/tshop/mueller/btn_quick_login.gif');
			}
		});
	});	
});

