jQuery(window).load(function() {

jQuery.fn.fadeToggle = function(speed, easing, callback) 
{
	return this.animate({opacity: 'toggle'}, speed, easing, callback);
}; 

jQuery.fn.pause = function(duration) {
    jQuery(this).animate({ dummy: 1 }, duration);
    return this;
};

jQuery(".pricing_outer").hover(function () {
	
	jQuery(this).css("z-index","10");
	jQuery('.pricing_link').css("z-index","10");
	
	},
	function () {
	jQuery(this).css("z-index","2");
	jQuery('.pricing_link').css("z-index","2");
});

jQuery(".schedule_outer").hover(function () {
	jQuery(this).css("z-index","10");
	jQuery('.schedule_link').css("z-index","10");
	},
	function () {
	jQuery(this).css("z-index","5");
	jQuery('.schedule_link').css("z-index","5");
});


jQuery(".testimonials_outer").hover(function () {
	
	jQuery(this).css("z-index","10");
	jQuery('.testimonials_link').css("z-index","10");
	},
	function () {
	jQuery(this).css("z-index","3");
	jQuery('.testimonials_link').css("z-index","3");
});

jQuery(".healing_outer").hover(function () {
	jQuery(this).css("z-index","10");
	jQuery('.healing_link').css("z-index","10");
	},
	function () {
	jQuery(this).css("z-index","7");
	jQuery('.healing_link').css("z-index","7");
});

jQuery(".astrology_outer").hover(function () {
	jQuery(this).css("z-index","10");
	jQuery('.astrology_link').css("z-index","10");
	},
	function () {
	jQuery(this).css("z-index","1");
	jQuery('.astrology_link').css("z-index","1");
});




 });
