/**
 * Sivuston yleiset efektit
 * 
 * @version $Id: index.php 2312 2010-03-30 11:24:57Z ville $
 * @copyright Agileus Software Oy
 */

jQuery(document).ready(function() {
	$('.bannerthemes').cycle({
		fx: 'fade',
		timeout: '7000',
		speed: '800'
	});
	$('.leftthemes').cycle({
		fx: 'fade',
		timeout: '7000',
		speed: '800'
	});

	if($.fancybox) {
		$(".galleryitem a").fancybox({
			'speedIn'		:	600,
			'speedOut'		:	200,
			'overlayShow'	:	true,
			'titleShow'		: true,
			'titlePosition' : 'inside',
			'width'         : 600,
			'height'        : 480,
			'scrolling'		: 'no',
			'transitionIn' : 'elastic',
			'transitionOut' : 'elastic'
		});

		$(".naytapopup").fancybox({
			'speedIn'		:	600,
			'speedOut'		:	200,
			'overlayShow'	:	true,
			'titleShow'		: false,
			'autoDimensions'	: true,
			'scrolling'		: 'auto'
		});
	}

	$(".webgallery a.image").mouseenter(function(){
		 $(this).animate(
		{
			opacity: "1.0"
		}, 
		{
			duration:"40"
		});
	}).mouseleave(function(){
		$(this).animate({
			opacity: "0.7"
		}, 
		{
			duration:"40"
		});
	});
	
});
