$(function() {
	$('.toggle-content a').click(function(){
		
		var height_current = $('#entry-content').height();
		var height_content = $('.content-box').height();
		var height_hidden = 514;
		
		if ( $('.youtube-player').is(':visible') ) {
			$('#entry-content').animate({ height: height_content+24 }, 400 );
			$('.youtube-player').fadeToggle(300);
			$('.toggle-content a').addClass('toggled');
		} else {
			$('.youtube-player').fadeToggle(300);
			$('#entry-content').animate({ height: '514' }, 400 );
			$('.toggle-content a').removeClass('toggled');
		}
  	 });
});

//Masonry config
$(function(){

	$('#container-main').masonry({
		itemSelector: '.brick',
		columnWidth: 208,
		gutterWidth:	2,
		isAnimated:		true,
		isFitWidth:		true,
	});

});

// Cycle config
$(function() {
    $('#featured-posts .slider').cycle({
		fx:					'fade',
        timeout:  			7000,
        pause:	  			1,
		slideResize: 		true,
        containerResize:	false,
        width: 				'100%',
		fit: 				1,
        pager:   			'#nav-pager',
        pagerAnchorBuilder: function(idx, slide) { 
        	// return selector string for existing anchor 
        	return '#nav-pager li:eq(' + idx + ') a'; 
        }
    });    
});
