window.addEvent('domready', function(){
	
	$$('a.armory_search').addEvent('click',function(e){
		e.stop();
		var type = this.getParent('tr').getElement('select.type').options.selectedIndex;
		var expression = this.getParent('tr').getElement('input.expression').value;
		document.location = '/armory?type='+type+'&exp='+expression;
	}
	);

	if($('defense')){
		$$('a.armory_switch').addEvent('click',function(e){
			e.stop();
			if($('defense').style.display == "none"){
				$('defense').style.display = "block";
				$('attack').style.display = "none";
			}
			else{
				$('defense').style.display = "none";
				$('attack').style.display = "block";
			}
		});		
	
	}

	$$('a.check_wg').addEvent('click',function(e){
		e.stop();
		var rq = new Request({
							url: this.href,
							method: 'GET',
							onSuccess: function(response) { 
								Sexy.info(response);
							}
					});
			 
					rq.send();
	}
	);

}
);

