function showproduct(x){
	$('.popcontent').html($('#popcontent'+x).html());
	$('.tabmenu a[rel*=popcontent'+x+']').each(function(){
		$(this).addClass('tabmenuactive');
	});
}
function showfoto(x) {
	$('#viewpict').html('<img src="'+x+'" />');
}
function openImg(x,y,z) {
	window.open(x,'_blank','width='+y+',height='+z);
	return false;
}

//Fungsi Aktivasi FaceBox
jQuery(document).ready(function($) {
	$('a[rel*=facebox]').facebox();
})
function openProduct(x) {
	jQuery.facebox({ ajax: x })
}
$(document).bind('reveal.facebox', function() {
	showproduct(1);
});

//Fungsi Aktivasi Proses
$(document).ready(function() {
	$('#menuKiri').find('a[rel*=dropdown]').each(function() {
		$(this).click(function() {							   
			var url = $(this).attr('id');
			var page = $(this).attr('page');
			var seriID = $(this).attr('name');
			$('#menu_produk').html('<ul class="menu_produk"><li><a href="<{$menu[seq].url}>">Loading...</a></li></ul>').load(url);
			$('#row1').html('<img src="images/lightbox-ico-loading.gif" style="margin:30px 0px 0px 30px">').load(page+'.php?action='+seriID+'&load=1');
		});
	});

	$('#tabss > ul').tabs();
});
