jQuery(document).ready(function() {
	$('.page_banner').cycle({
		fx: 'fade',
		timeout: '7000',
		speed: '800'
	});	

	$(".galleryimage a.image").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'		
	});

	$(".galleryimage a.image").mouseenter(function(){
		$(this).animate(
		{
			opacity: "1.0"
		}, 
		{
			duration:"20"
		});
	}).mouseleave(function(){
		$(this).animate({
			opacity: "0.7"
		}, 
		{
			duration:"20"
		});
	});

});

