$(function(){
	if ($('#intro').length){
		$('#intro').innerfade({ speed: 'slow', timeout: 4000, type: 'sequence', containerheight: '390px' }); 	
	}
	if ($('.innerfade').length){
		$('.innerfade').innerfade({ speed: 'slow', timeout: 4000, type: 'sequence', containerheight: '390px' });
	} 	

	if ($(".showBubble").length){
		$(".showBubble").click(function(){
			$(this).siblings(".bubble").animate({opacity: 'toggle'},200,function(){});
			if ($(this).siblings(".bubble").css("opacity") == 0){
				$(this).html("Hide Features");
			}
			else{
				$(this).html("Show Features");
			}
		});
	}

});


