/*======================================
Media Lab Creative, LLC
http://medialabcreative.com
contact@medialabcreative.com
		Author: Chris Honniball
		File Description: jQuery Animations for Site.
========================================*/
jQuery(document).ready(function(j$) {
	/*-- ! onLoad Animations --*/
	j$(window).load(
		function(){
			j$('#follow_us_pane').delay(300).show( "bounce", { direction:'right', times:2, distance:32 }, 500 );
			j$('#mac_error_overlay').delay(1000).animate({ height: '100%' }, 4000,
				function(){
					j$('#mac_error_box').fadeIn(100);
				}
			);
		}
	);
		
	/*-- ! Follow Us Pane Hover Animations --*/
	j$('#follow_us_pane').hover(
		function(){
			j$(this).animate({ right: '-30px' });
		},
		function(){
			j$(this).stop().animate({ right: '-361px'}, 700 );
		}
	);
	j$('a[class $= "_follow"]').mouseenter(
		function() {
			j$(this).children('img').effect("bounce", { direction:'up', times:2, distance:10 }, 200)
		}
	);
	
	/*-- Block Post Animations --*/
	j$('.post.block').hover(
		function(){
			j$(this).find('.thumb').stop().animate({top: '310'}, 500);
		}, function(){
			j$(this).find('.thumb').stop().animate({top: '0'}, 500);
		}
	);
	
	/* FAQ List clickables */
	j$('ul.faq > li > span').click(
		function(){
			j$(this).parent('li').children('div').slideToggle();
		}
	);
});
