$(document).ready(function(){ 
		$('#c-nav-info').clone().appendTo('#nav-info');
		$('#c-nav-layanan').clone().appendTo('#nav-layanan');
		$('#c-nav-about').clone().appendTo('#nav-about');
		$('#c-nav-laporan').clone().appendTo('#nav-laporan');
		$('#c-nav-login').clone().appendTo('#nav-login');
		$("ul.sf-menu").superfish({dropShadows: false, animation:{opacity:'show',height:'show'} }).find('ul').bgIframe({opacity:true}); 
		$("li:last-child").addClass("last-child");
		// Lightbox first, then slider
		$("a[rel^='lightBox']").lightBox();
		$("#slider").easySlider({ auto: true, continuous: true, numeric: 	true,	speed: 1200,	pause: 4000 }); 


		$.ajax({
			type: "GET",
			url: "bumn-feed/",
			dataType: "xml",
			success: function(xml) {
				$(xml).find('item').each(function(){
					var title = $(this).find('title').text();
					var url = $(this).find('link').text();
					$('<li><a href="'+url+'" target="_blank">'+title+'</a></li>').appendTo('#js-news');
				});				
				
				// $().newsTicker( {newsList:'#news', startDelay:10, controls:false, resumeOffHover:true, placeHolder1:' _', placeHolder2:'_'} );
				/*
				$('#news').vTicker({ 
					speed: 750,
					pause: 3000,
					animation: 'fade',
					mousePause: true,
					showItems: 1
				});				
				*/
				$('#js-news').ticker( {controls: false, titleText: ''} );
			}
  	});


}); 
