	<!--// hide contents
	function openWindow(url) {
		 if(document.layers || document.all || document.getElementById) {
		 	var window_left = (screen.width-1024)/2;
			var window_top = (screen.height-786)/2;
			popUp = window.open(url,'OpenWindow','resizable=no, menubar=no ,scrollbars=yes ,status=no ,height=700,width=558,left=' + window_left + ',top=' + window_top + '')
		}
	}
	// end hiding contents -->

	//hover script written by Didik using jQuery yeahhh!!!!
	$(document).ready(function() {
		var $demografidata = $('div.demografidata > table').hide();
		$('table.show').show(); //default tabel muncul diawal
//		$('map.demografimap > area').each(function(index) {
//			$(this).mouseover(function() {
//				$('div.demografidata > table').hide();
//				$demografidata.eq(index).show(500);
//			});
//			$(this).mouseout(function() {
//				$demografidata.eq(index).hide(500);
//			});
//		});
		$('map.demografimap > area').each(function(index) {
			$(this).mouseover(function() {
				$('div.demografidata > table').hide();
				$demografidata.eq(index).show();
				if ($(this).click(function(){})) {
				
				} else {
					$(this).mouseout(function() {
						$demografidata.eq(index).hide();
					});
				};
			});
		});
	});

