function setGroup(groupid, templateid){
	var url = '/codeblue/inc_downloadmodule.php';
	$('#groups').load(url, {action: 'setGroup', id : groupid, template: templateid});
	$('#categories').load(url, {action: 'setProduct', id : '0', template: templateid});
	$('#downloads').load(url, {action: 'setCat', id : '0', cattype: '0', template: templateid});
	$('#products').load(url, {action: 'setActive', id : '0', group: groupid, template: templateid});
}

function setProduct(productid, templateid, groupid){
	var url = '/codeblue/inc_downloadmodule.php';
	$('#categories').load(url, {action: 'setProduct', id : productid, template: templateid});
	$('#downloads').load(url, {action: 'setCat', id : '0', cattype: '0', template: templateid});
	$('#products').load(url, {action: 'setActive', id : productid, group: groupid, template: templateid});
}

function setCat(productid, templateid, cattypeid){
	var url = '/codeblue/inc_downloadmodule.php';
	$('#categories').load(url, {action: 'setActiveCat', id : productid, cattype: cattypeid, template: templateid});
	$('#downloads').load(url, {action: 'setCat', id : productid, cattype: cattypeid, template: templateid});
}

function listTopCategories(groupid, templateid){
	var url = '/codeblue/inc_downloadmodule.php';
	$('#groups').load(url, {action: 'listTopCategories', id : groupid, template: templateid});
	$('#downloads').load(url, {action: 'setTopCategory', id : groupid, template: templateid});
}