// JavaScript Document
$(document).ready(function() {
	for(r = 1; r <= 3; r++){
		$('.slides-box-'+ r).cycle({ 
			fx:     	'fade',
			timeout:	6000,
			speed:		1000,
			delay:		(r*2000)-6000
		});
	}

	// Colorbox
	$("#mainContainer a.colorbox").colorbox({maxWidth:"75%", maxHeight:"75%"});
	$('.colorboxText').colorbox({iframe: true, width: "800px", height: "600px", title: true});
});
