// Home page Quote Transitions
$(document).ready(function(){
	$(".s-home #twitter_div").show().find("ul").innerfade({
		timeout: 7000,
		speed: 500,
		containerheight: "100px"
	});
});

// Fancybox
$(document).ready(function(){
	$(".thumb a").fancybox({
	 'overlayShow': true,
	 'overlayOpacity': 0.5
	});

	$(".thumb a.youtube").fancybox({
	 'overlayShow': true,
	 'overlayOpacity': 0.5,
	 'frameWidth': 420,
	 'frameHeight': 265
	});
});


// Expanding sections
/*$(document).ready(function(){

	$(".expander").hide();

	$("h3, h2").each(function(){
		if ($(this).next().hasClass("expander") ) {
			$(this).addClass("expandevent");
		}
	});

	$(".expandevent").click(function(){
		$(this).next().slideToggle("slow");
	});

});*/
