// JavaScript Document
function changeBahasa(e, url) {
	//var current = $(location).attr('href');
	
	var current = $(location).attr('href');
	
	var bahasa = "eng";
	if (e == 1) bahasa = "ind";
	
	var action = url+'alfalink/changebahasa';	
	
	$.ajax({  
		type: "POST",
		url: action,  // Send the login info to this page		
		data : { bahasa: bahasa },
		success: function(msg){    
			window.location.href = current;
		}
	});	
}

function GotoGalleryPage(url, ctg_id) {
	alert(url);
	
	//var action = url+'alfalink/gallery';	
	//window.location.href = current;
}

function change_cou(e) {
	$(".ind").hide();
	$(".eng").hide();
		
	if (e != "") {		
		var cou = 'cou_'+ e;
		$("#"+cou).show();
		
	} 
}


