

$(document).ready(function() {
	
	//Slideshow
	$('#content-image-holder-left').cycle({timeout: 5000})
	$('#content-image-holder-right').cycle({timeout: 5000, delay: -2000})
	
	$("#content2-image-holder").cycle({timeout: 5000})
	
	//Colorbox	
	$("a[rel=gallery1]").colorbox({
		slideshow : true,
		slideshowSpeed	: 4000,
		current	 :	"{current}/{total} kép",
		previous :	"előző",	
		next	: "következő",
		close	: "bezárás",
		slideshowStart	:	"vetítés indítása",
		slideshowStop	:	"vetítés leállítása"
	});
	$("a[rel=gallery2]").colorbox({
		slideshow : true,
		slideshowSpeed	: 4000,
		current	 :	"{current}/{total} kép",
		previous :	"előző",	
		next	: "következő",
		close	: "bezárás",
		slideshowStart	:	"vetítés indítása",
		slideshowStop	:	"vetítés leállítása"
	});
	
	$('#content-image-holder-left').click(function(){
			$('#colorbox-opener1').click();
	});
	
	$('#content-image-holder-right').click(function(){
			$('#colorbox-opener2').click();
	});
	
	
});
