jQuery(function($) { $('ul.gallery').galleria(); }); 


$(document).ready(function() {


			$("a#popup").fancybox({

				'overlayOpacity'	:	0.7,

				'overlayColor'		:	'#FFF'

			});

		});




	$(function() {
		// set opacity to nill on page load
		$("#bigleft span, #bigmiddle span, #bigright span").css("opacity","0");
		// on mouse over
		$("#bigleft span, #bigmiddle span, #bigright span").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, "slow");
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 0
			}, "slow");
		});
	});



$(document).ready(
				function(){				
					$('.postcontent ul').innerfade({
						speed: 1000,
						timeout: 5000,
						type: 'sequence',
						containerheight: '600px'
					});

			});

