dhtmlLoadObjects (['js/jquery.slidenews.js', 'css/jquery.slidenews.css']);
/*dhtmlLoadObjects ('js/jquery.popupgallery.js');

function showGallery(id) {
  //window.open('/?sorozat_id='+id+'&id='+id,'gallery','width=520,height=700,scrollable=no,top=10,left=10');
  //top.location.href = '/hu/galeriak.html?sub=sorozat&sorozat_id='+id+'&id='+id;
  $(document).popupGallery({'sorozat_id' : id});
} 
*/
function onYouTubePlayerReady(playerid) {
	playerid = unescape(playerid).substr(8);
	var player = document.getElementById('yt-' + playerid);
    player.addEventListener("onStateChange", 'youtubePlayerStateChange');
}
function youtubePlayerStateChange(state) {
	switch (state) {
	case 3:
	case 1:
		$('.topnews').slideNews('disableAutoscroll');
		break;
	case 0:
	case 2:
		$('.topnews').slideNews('enableAutoscroll');
	}
}

jQuery(function() {
    jQuery("#headerimage div").cycle({speed: 2000, timeout: 4000});
    $('.topnews a.video').youtube({'playerWidth': 370, 'playerHeight': 280}); 
    $('.topnews').insertBefore("#content").slideNews({
    	autoScrollInterval: 4500,
    	pagerTarget: '.maintitle',
    	beforePaging: function () {
    		$('.topnews .youtubevideocontainer object').each(function() {
    			if (this.getPlayerState && (this.getPlayerState() == 1 || this.getPlayerState() == 3))
    				this.pauseVideo();
    		});
    	}
    });
    $('.maintitle').hover(
    	function() {
    		$('.topnews').slideNews('autoscrollStop');
    		$('.topnews').slideNews('showArrows');
    	}, 
    	function() {
    		$('.topnews').slideNews('autoscrollStart');
    		$('.topnews').slideNews('hideArrows');
    	}
    );
});
