/**
 * Javascript functions for the page filter
 * 
 * @author: Raymond Manalo
 * Housingworks, Inc.
 * @date: 3/22/2010
 * 
 */

var PGFLTR = {
	
	init:function(obj,type){
		if(type == 'action-alerts'){
			if(obj == 'all'){
				window.location.href = '/news/action-alerts';
			}else{
				window.location.href = '/news/action-alerts/category/' + obj;	
			}
			
		} else if(obj != 'all'){
			window.location.href = '/' + type + '/category/' + obj;	
		} 
		else{
			window.location.href = '/' + type;
		}
		
	}
}

