$(document).ready(function() {

	// COLORBOX SETTINGS
	$("a[rel='calendar']").colorbox({
	
		scrolling: false,
		transition: "elastic",
		rel: "group1",
		current: "Sivu {current} / {total}",
		width: "600px",
		html: function() {
		
			return $(this).next().html();
		}

	
	});	
	
	$("a[rel='gallery']").colorbox({
	
		slideshow: true,
		slideshowSpeed: 4000,
		slideshowStart: "Aloita slideshow",
		slideshowStop: "Lopeta slideshow",
		current: "Kuva {current} / {total}",
		maxWidth: "90%",
		maxHeight: "90%"
		
	
	});		
	
	// NEWSFLASH SETTINGS
	$("#newsflash .close").click(function() {
	
		$(this).parent().fadeOut(500);
	
	});
	
	$("#newsflash .scroller").cycle({
		fx: 'fade',
		timeout: 4000,
		speed: 500,
		pause: 1,
		containerResize: 0
	});
	
	$("#newsflash").css({opacity : "0.9"});
	$("#newsflash").hover(function() {
	
		$(this).css({opacity : "1"});
		
	}, function() {
	
		$(this).css({opacity : "0.9"});
	});
	
	
});
