/* CREDITS
 * ----------------------------------------------------------
 * Title:		Forum specific scripts
 * Author:		Dirk Bonhomme <dirk@inventis.be>
 * Date:		22/12/2009
 * Last Edit:	22/12/2009 [Dirk Bonhomme]
 * ----------------------------------------------------------
 * Inventis - Web Architects - We design the Web!
 * www.inventis.be
*/
window.addEvent('domready', function(){
	
	// Category selector
	if(form = $$('form.categoryselector').pop()){
		var button = form.getElement('button');
		button.addEvent('click', function(){
			var url = form.getElement('select[name=url]').value;
			var order = form.getElement('select[name=order]').value;
			var direction = form.getElement('select[name=direction]').value;
			location = form.action + url + '?order=' + order + '&direction=' + direction;
		});		
	}
	
});

window.addEvent('load', function(){
	
	// Resize big images
	$$('table.forum_overview.posts td img').each(function(image){
		if(image.getWidth() > 620) image.width = 620;
	});
	
});
