jQuery(function( $ ){
	/**
	 * Demo binding and preparation, no need to read this part
	 */
	//borrowed from jQuery easing plugin
	//http://gsgd.co.uk/sandbox/jquery.easing.php
	

	$('a.next').click(function(){
		$('div.pane').scrollTo( {top:'-=0px', left:'+=750'}, 500 );
		return false;
	});
	
	$('a.back').click(function(){
		$('div.pane').scrollTo( {top:'-=0px', left:'-=750'}, 500 );
		return false;
	});

});

$(document).ready(function(){

	$("#popup_korting").colorbox({iframe:true, innerWidth:500, innerHeight:600, scrolling:false});

});
