$(document).ready(function() {
		$('div.content-holder').hide();
		$("h3").live('click', function(){
			// using slideToggle to create sliding effect
			$(this).next('div.content-holder').slideToggle(400).siblings('div.content-holder:visible').slideUp(400);
			$(this).toggleClass('video-active');
			$(this).siblings('h3').removeClass('video-active');
			/*
			if ( $("h3").siblings('div.content-holder:visible') ) {
				$(this).addClass('video-active');
			} else {
				$(this).removeClass('video-active');
			}*/
			
		});
		
		/*
		var path = window.location;
				if ( $(path) == 'http://www.becomeacasa.org/is-casa-for-you/' ) {
					$(this).find('h3').css({
						background: 'url("/images/icons/active-indicator.png") no-repeat scroll left top transparent',
						clear: 'both',
						margin: '0 0 15px',
						padding: '0 0 0 35px'
					});
				}*/
		
		$("h3").hover(function() {
			$(this).css('cursor', 'pointer');
		});
		
});

