// JavaScript Document

/**
 * Open een window van uit javascript.
 */
function open_window(url) {
	window.open(url,'','resizable=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,fullscreen=no,dependent=no,width=660,height=680,resize=no');
}

function gotoSlide(slide) {
   $('#action_pictures').cycle(slide);  	
}

function testr(){
	alert('f');
}

jQuery(document).ready(function() {
	
	/**
	 * Actions slider in de sidebar.
	 */
	 //if (typeof document.getElementById('bannerCnxdftr') != 'undefined') {
		//jQuery('#actionBox').cycle({
			//fx: 'scrollDown',
			//pause: 0
		 //});
	 //}
	
	/**
	 * Actions slider op de homepage.
	 */
	if (typeof document.getElementById('bannerCntr') != 'undefined') {
		jQuery('#action_pictures').cycle({
			fx: 'scrollLeft',
			pause: 1,
			timeout:6000,
			after: function(currSlideElement, nextSlideElement, options, forwardFlag) {
				//console.log(currSlideElement);	
			}
    	});	
   
	}
	
    /**
	 * Fancybox voor foto's pagina.
	 */
	$(document).ready(function() {
		$("a.gallery_img").fancybox();
		
		$(function(){
			$("ul#ticker01").liScroll();
		});
	
	});

	
});

