$(document).ready(function(){
	addBoxHover()
});

function addBoxHover() {	
	$('.flexslider').flexslider({animation: "slide", slideshow: true, slideshowSpeed: 5000, animationDuration: 1000, directionNav: true, controlNav: true, controlsContainer: ".flex-container", animationLoop: true, pauseOnAction: false});
		
	if($.browser.safari){
		$('.boxgrid').ready(function(){
			$(".datelink", this).hide();
		});
		
		//Full Caption Sliding (Hidden to Visible)
		$('.boxgrid').hover(function(){
			$(".datelink", this).show();
		}, function() {
			$(".datelink", this).hide();
		});
	} else {
		$('.boxgrid').ready(function(){
			$(".datelink", this).stop().animate({"opacity": 0}, "fast");
		});
		
		//Full Caption Sliding (Hidden to Visible)
		$('.boxgrid').hover(function(){
			$(".datelink", this).stop().animate({"opacity": 1}, "fast");
		}, function() {
			$(".datelink", this).stop().animate({"opacity": 0}, "fast");
		});
	}
	
	jQuery('span[class*=timeago]').timeago();
}
