function base(){

	$("div.callouts div").hover(
		function () { $(this).addClass("active"); }, 
		function () { $(this).removeClass("active"); }
    );
	$("div.callouts div.callout").click(function () {
		var url = $(this).find("a").attr('href');
		window.location = url;
	}); 


}

function innerfade(){
	$("div.innerfade").innerfade({ speed: 750, timeout: 5000, type: 'sequence', containerheight: '374px' }); 
}


