//*  ========  jQuery functions for the Revived Life Christian Blog  ========  *//

jQuery(document).ready(function() {


//*  ====  jQuery Tipsy Tooltips  ====  *//

	jQuery(function() {
		jQuery('#south').tipsy({fade: true, gravity: 's'});
		jQuery('#south2').tipsy({fade: true, gravity: 's'});
		jQuery('#south3').tipsy({fade: true, gravity: 's'});
		jQuery('#south4').tipsy({fade: true, gravity: 's'});

		jQuery('#south_def').tipsy_def({fade: true, gravity: 's'});
		jQuery('#south_def2').tipsy_def({fade: true, gravity: 's'});
		jQuery('#south_def3').tipsy_def({fade: true, gravity: 's'});
		jQuery('#south_def4').tipsy_def({fade: true, gravity: 's'});
		jQuery('#south_def5').tipsy_def({fade: true, gravity: 's'});
	});

// ==== //  Speed settings are slow, def & fast  // ==== //
		jQuery(".jQh").fadeTo("slow", 0.5);
		jQuery(".jQh").hover(function(){
		jQuery(this).fadeTo("fast", 1.0);
			},function(){
		jQuery(this).fadeTo("slow", 0.5);
			});
		jQuery(".jQhrev").hover(function(){
		jQuery(this).fadeTo("fast", 0.8);
			},function(){
		jQuery(this).fadeTo("slow", 1.0);
	});

});